Skip to content

Commit 244cb24

Browse files
authored
Merge pull request #493 from Memoyu/update-actions
Update actions version
2 parents 23c65c4 + 2d600bb commit 244cb24

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
os: [ windows-latest ]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- name: Setup .NET SDK 6.0.x
21-
uses: actions/setup-dotnet@v1
21+
uses: actions/setup-dotnet@v3
2222
with:
2323
dotnet-version: 6.0.x
2424

.github/workflows/buildandtest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
- 11212:11211
3939

4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v4
4242
- name: Setup .NET SDK 6.0.x
43-
uses: actions/setup-dotnet@v1
43+
uses: actions/setup-dotnet@v3
4444
with:
4545
dotnet-version: 6.0.x
4646

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v4
1717
- name: Setup .NET Core
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3
1919
with:
2020
dotnet-version: 6.0.x
2121
- name: Build with dotnet
2222
run: dotnet build --configuration Release /home/runner/work/EasyCaching/EasyCaching/EasyCaching.sln
2323
- name: Pack with dotnet
2424
run: dotnet pack /home/runner/work/EasyCaching/EasyCaching/EasyCaching.sln --version-suffix alpha`date +%Y%m%d%H%M%S` -o /home/runner/work/nugetpkgs -c Release --no-build
2525
- name: Upload artifact
26-
uses: actions/upload-artifact@v1
26+
uses: actions/upload-artifact@v3
2727
with:
2828
name: nugetpkgs
2929
path: /home/runner/work/nugetpkgs
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Download build artifacts
38-
uses: actions/download-artifact@v1
38+
uses: actions/download-artifact@v3
3939
with:
4040
name: nugetpkgs
4141
- name: list nugetpkgs

.github/workflows/release_stable.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v4
1515
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v1
16+
uses: actions/setup-dotnet@v3
1717
with:
1818
dotnet-version: 6.0.x
1919
- name: Build with dotnet
2020
run: dotnet build --configuration Release /home/runner/work/EasyCaching/EasyCaching/EasyCaching.sln
2121
- name: Pack with dotnet
2222
run: dotnet pack /home/runner/work/EasyCaching/EasyCaching/EasyCaching.sln -o /home/runner/work/nugetpkgs -c Release --no-build
2323
- name: Upload artifact
24-
uses: actions/upload-artifact@v1
24+
uses: actions/upload-artifact@v3
2525
with:
2626
name: nugetpkgs
2727
path: /home/runner/work/nugetpkgs
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Download build artifacts
36-
uses: actions/download-artifact@v1
36+
uses: actions/download-artifact@v3
3737
with:
3838
name: nugetpkgs
3939
- name: list nugetpkgs

0 commit comments

Comments
 (0)