Skip to content

Commit 0ce6bd0

Browse files
authored
update action due to out of data version (#565)
Signed-off-by: catcherwong <[email protected]>
1 parent af54dba commit 0ce6bd0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Setup .NET SDK 8.0.x
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: 8.0.x
2323

.github/workflows/buildandtest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@v4
4141
- name: Setup .NET SDK 8.0.x
42-
uses: actions/setup-dotnet@v3
42+
uses: actions/setup-dotnet@v4
4343
with:
4444
dotnet-version: 8.0.x
4545

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Setup .NET Core
18-
uses: actions/setup-dotnet@v3
18+
uses: actions/setup-dotnet@v4
1919
with:
2020
dotnet-version: 8.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@v3
26+
uses: actions/upload-artifact@v4
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@v3
38+
uses: actions/download-artifact@v4
3939
with:
4040
name: nugetpkgs
4141
path: nugetpkgs

.github/workflows/release_stable.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v3
16+
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: 8.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@v3
24+
uses: actions/upload-artifact@v4
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@v3
36+
uses: actions/download-artifact@v4
3737
with:
3838
name: nugetpkgs
3939
path: nugetpkgs

0 commit comments

Comments
 (0)