Skip to content

Commit cb410f9

Browse files
Merge branch 'master' of github.com:RocketSurgeonsGuild/actions
2 parents 362cc09 + 0dbf751 commit cb410f9

File tree

8 files changed

+1311
-1504
lines changed

8 files changed

+1311
-1504
lines changed

.github/workflows/close-milestone.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3.0.2
18+
uses: actions/checkout@v3.1.0
1919
with:
2020
fetch-depth: 0
2121

@@ -25,18 +25,18 @@ jobs:
2525
dotnet-version: '3.1.x'
2626

2727
- name: Install GitVersion
28-
uses: gittools/actions/gitversion/[email protected].13
28+
uses: gittools/actions/gitversion/[email protected].15
2929
with:
3030
versionSpec: '5.x'
3131

3232
- name: Install GitReleaseManager
33-
uses: gittools/actions/gitreleasemanager/[email protected].13
33+
uses: gittools/actions/gitreleasemanager/[email protected].15
3434
with:
3535
versionSpec: '0.11.x'
3636

3737
- name: Use GitVersion
3838
id: gitversion
39-
uses: gittools/actions/gitversion/[email protected].13
39+
uses: gittools/actions/gitversion/[email protected].15
4040

4141
# Ensure the milestone exists
4242
- name: Create Milestone
@@ -49,7 +49,7 @@ jobs:
4949

5050
# move any issues to that milestone in the event the release is renamed
5151
- name: sync milestones
52-
uses: RocketSurgeonsGuild/actions/[email protected].1
52+
uses: RocketSurgeonsGuild/actions/[email protected].2
5353
with:
5454
default-label: ':sparkles: mysterious'
5555
github-token: ${{ secrets.RSG_BOT_TOKEN }}

.github/workflows/draft-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3.0.2
22+
uses: actions/checkout@v3.1.0
2323
with:
2424
fetch-depth: 0
2525

2626
- name: Fetch all history for all tags and branches
2727
run: git fetch --prune
2828

2929
- name: Install GitVersion
30-
uses: gittools/actions/gitversion/[email protected].13
30+
uses: gittools/actions/gitversion/[email protected].15
3131
with:
3232
versionSpec: '5.x'
3333

3434
- name: Use GitVersion
3535
id: gitversion
36-
uses: gittools/actions/gitversion/[email protected].13
36+
uses: gittools/actions/gitversion/[email protected].15
3737

3838
- name: Create Milestone
3939
uses: WyriHaximus/github-action-create-milestone@v1
@@ -44,7 +44,7 @@ jobs:
4444
continue-on-error: true
4545

4646
- name: sync milestones
47-
uses: RocketSurgeonsGuild/actions/[email protected].1
47+
uses: RocketSurgeonsGuild/actions/[email protected].2
4848
with:
4949
default-label: ':sparkles: mysterious'
5050
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/sync-labels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3.0.2
20+
uses: actions/checkout@v3.1.0
2121

2222
- name: Checkout tools repo
23-
uses: actions/checkout@v3.0.2
23+
uses: actions/checkout@v3.1.0
2424
with:
2525
repository: RocketSurgeonsGuild/.github
2626
path: .rsg
2727

2828
- name: merge files
29-
uses: RocketSurgeonsGuild/actions/[email protected].1
29+
uses: RocketSurgeonsGuild/actions/[email protected].2
3030
with:
3131
files: '.rsg/.github/labels.yml,.github/labels.yml'
3232
output: .github/labels.yml
3333

3434
- name: Run Labeler
3535
if: success()
36-
uses: crazy-max/ghaction-github-labeler@v3.1.1
36+
uses: crazy-max/ghaction-github-labeler@v4.1.0
3737
with:
3838
yaml-file: .github/labels.yml
3939
skip-delete: false

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3.0.2
13+
- uses: actions/checkout@v3.1.0
1414
- run: |
1515
npm install
1616
npm run all

.github/workflows/update-milestone.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3.0.2
17+
uses: actions/checkout@v3.1.0
1818
with:
1919
ref: ${{ github.sha }}
2020
fetch-depth: 0
@@ -24,20 +24,20 @@ jobs:
2424

2525
- name: Install GitVersion
2626
if: ${{ github.event.action == 'opened' }}
27-
uses: gittools/actions/gitversion/[email protected].13
27+
uses: gittools/actions/gitversion/[email protected].15
2828
with:
2929
versionSpec: '5.x'
3030

3131
- name: Install GitReleaseManager
3232
if: ${{ github.event.action == 'opened' }}
33-
uses: gittools/actions/gitreleasemanager/[email protected].13
33+
uses: gittools/actions/gitreleasemanager/[email protected].15
3434
with:
3535
versionSpec: '0.11.x'
3636

3737
- name: Use GitVersion
3838
if: ${{ github.event.action == 'opened' }}
3939
id: gitversion
40-
uses: gittools/actions/gitversion/[email protected].13
40+
uses: gittools/actions/gitversion/[email protected].15
4141

4242
- name: Create Milestone
4343
if: ${{ github.event.action == 'opened' }}
@@ -49,7 +49,7 @@ jobs:
4949
continue-on-error: true
5050

5151
- name: sync milestones
52-
uses: RocketSurgeonsGuild/actions/[email protected].1
52+
uses: RocketSurgeonsGuild/actions/[email protected].2
5353
with:
5454
default-label: ':sparkles: mysterious'
5555
github-token: ${{ secrets.GITHUB_TOKEN }}

dotnet/actions/install-dotnet-sdk/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ runs:
44
using: "composite"
55
steps:
66
- name: 🔨 Use .NET Core 2.1 SDK
7-
uses: actions/setup-dotnet@v2
7+
uses: actions/setup-dotnet@v3
88
with:
99
dotnet-version: '2.1.x'
1010
- name: 🔨 Use .NET Core 3.1 SDK
11-
uses: actions/setup-dotnet@v2
11+
uses: actions/setup-dotnet@v3
1212
with:
1313
dotnet-version: '3.1.x'
1414
- name: 🔨 Use .NET Core 5.0 SDK
15-
uses: actions/setup-dotnet@v2
15+
uses: actions/setup-dotnet@v3
1616
with:
1717
dotnet-version: '5.0.x'
1818
- name: 🔨 Use .NET Core 6.0 SDK
19-
uses: actions/setup-dotnet@v2
19+
uses: actions/setup-dotnet@v3
2020
with:
2121
dotnet-version: '6.0.x'

0 commit comments

Comments
 (0)