Skip to content

Commit 0f48fc7

Browse files
committed
Update CI workflows
1 parent f3fb80c commit 0f48fc7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Use .NET Core 6.0 SDK
17-
uses: actions/setup-dotnet@v1
17+
uses: actions/setup-dotnet@v4
1818
with:
1919
dotnet-version: '6.0.x'
2020
source-url: https://nuget.pkg.github.com/Shane32/index.json

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Check github.ref starts with 'refs/tags/'
1414
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
1515
run: |
@@ -24,7 +24,7 @@ jobs:
2424
echo version=$version
2525
echo "version=$version" >> $GITHUB_ENV
2626
- name: Use .NET Core 6.0 SDK
27-
uses: actions/setup-dotnet@v1
27+
uses: actions/setup-dotnet@v4
2828
with:
2929
dotnet-version: '6.0.x'
3030
source-url: https://api.nuget.org/v3/index.json

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
- windows-latest
2121
steps:
2222
- name: Checkout source
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v4
2424
- name: Use .NET Core SDK
25-
uses: actions/setup-dotnet@v2
25+
uses: actions/setup-dotnet@v4
2626
with:
2727
dotnet-version: 6.x
2828
source-url: https://nuget.pkg.github.com/Shane32/index.json

0 commit comments

Comments
 (0)