Skip to content

Commit 898c99a

Browse files
committed
Update workflow actions
1 parent 87f6e89 commit 898c99a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fail-fast: false
4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v3.5.0
47+
uses: actions/checkout@v4.1.2
4848
with:
4949
submodules: true
5050
- name: Build Windows
@@ -60,7 +60,7 @@ jobs:
6060
if: runner.os == 'Linux'
6161
run: ./dockerbuild.sh
6262
- name: Upload artifacts
63-
uses: actions/upload-artifact@v3.1.2
63+
uses: actions/upload-artifact@v4.3.1
6464
with:
6565
name: ${{ matrix.name }}
6666
path: nuget.package/runtimes/${{ matrix.name }}
@@ -72,26 +72,26 @@ jobs:
7272
DOTNET_NOLOGO: true
7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v3.5.0
75+
uses: actions/checkout@v4.1.2
7676
with:
7777
fetch-depth: 0
7878
- name: Setup .NET SDK
79-
uses: actions/setup-dotnet@v3.0.3
79+
uses: actions/setup-dotnet@v4.0.0
8080
with:
81-
dotnet-version: 7.0.x
81+
dotnet-version: 8.0.x
8282
- name: Install MinVer
8383
run: dotnet tool install --global minver-cli
8484
- name: Run MinVer
8585
id: minver
8686
run: echo "version=$(minver)" >> $env:GITHUB_OUTPUT
8787
- name: Download artifacts
88-
uses: actions/download-artifact@v3.0.2
88+
uses: actions/download-artifact@v4.1.4
8989
with:
9090
path: nuget.package/runtimes/
9191
- name: Create package
9292
run: ./nuget.exe Pack nuget.package/NativeBinaries.nuspec -Version ${{ steps.minver.outputs.version }} -NoPackageAnalysis
9393
- name: Upload NuGet package
94-
uses: actions/upload-artifact@v3.1.2
94+
uses: actions/upload-artifact@v4.3.1
9595
with:
9696
name: NuGet package
9797
path: ./*.nupkg

0 commit comments

Comments
 (0)