Skip to content

Commit 4eba7b8

Browse files
Update github actions
1 parent fe85bbf commit 4eba7b8

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
runs-on: ${{ matrix.os }}
8383
steps:
8484
- name: Checkout
85-
uses: actions/checkout@v3.0.2
85+
uses: actions/checkout@v3.1.0
8686
with:
8787
clean: 'false'
8888
fetch-depth: '0'
@@ -97,11 +97,11 @@ jobs:
9797
restore-keys: |
9898
${{ runner.os }}-nuget-
9999
- name: 🔨 Use .NET Core 3.1 SDK
100-
uses: actions/[email protected].0
100+
uses: actions/[email protected].1
101101
with:
102102
dotnet-version: '3.1.x'
103103
- name: 🔨 Use .NET Core 6.0 SDK
104-
uses: actions/[email protected].0
104+
uses: actions/[email protected].1
105105
with:
106106
dotnet-version: '6.0.x'
107107
- name: 🎁 dotnet tool restore

.github/workflows/close-milestone.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3.0.2
13+
uses: actions/checkout@v3.1.0
1414
with:
1515
fetch-depth: 0
1616

1717
- name: Install GitVersion
18-
uses: gittools/actions/gitversion/[email protected].13
18+
uses: gittools/actions/gitversion/[email protected].15
1919
with:
2020
versionSpec: '5.x'
2121

2222
- name: Install GitReleaseManager
23-
uses: gittools/actions/gitreleasemanager/[email protected].13
23+
uses: gittools/actions/gitreleasemanager/[email protected].15
2424
with:
2525
versionSpec: '0.11.x'
2626

2727
- name: Use GitVersion
2828
id: gitversion
29-
uses: gittools/actions/gitversion/[email protected].13
29+
uses: gittools/actions/gitversion/[email protected].15
3030

3131
# Ensure the milestone exists
3232
- name: Create Milestone

.github/workflows/draft-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ 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
fetch-depth: 0
2020

2121
- name: Fetch all history for all tags and branches
2222
run: git fetch --prune
2323

2424
- name: Install GitVersion
25-
uses: gittools/actions/gitversion/[email protected].13
25+
uses: gittools/actions/gitversion/[email protected].15
2626
with:
2727
versionSpec: '5.x'
2828

2929
- name: Use GitVersion
3030
id: gitversion
31-
uses: gittools/actions/gitversion/[email protected].13
31+
uses: gittools/actions/gitversion/[email protected].15
3232

3333
- name: Create Milestone
3434
uses: WyriHaximus/github-action-create-milestone@v1

.github/workflows/sync-labels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3.0.2
19+
uses: actions/checkout@v3.1.0
2020

2121
- name: Run Labeler
2222
if: success()
23-
uses: crazy-max/ghaction-github-labeler@v3.1.1
23+
uses: crazy-max/ghaction-github-labeler@v3.2.0
2424
with:
2525
yaml-file: .github/labels.yml
2626
skip-delete: false

.github/workflows/update-milestone.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3.0.2
16+
uses: actions/checkout@v3.1.0
1717
with:
1818
ref: ${{ github.sha }}
1919
fetch-depth: 0
@@ -23,20 +23,20 @@ jobs:
2323

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

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

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

4141
- name: Create Milestone
4242
if: ${{ github.event.action == 'opened' }}

0 commit comments

Comments
 (0)