Skip to content

Commit 5e71ec2

Browse files
authored
Merge pull request #3843 from GitTools/dependabot/github_actions/actions-8204c6933e
(build deps): bump the actions group with 2 updates
2 parents fb1da35 + 49c02a0 commit 5e71ec2

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/_artifacts_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
name: Restore State
3333
uses: ./.github/actions/artifacts-restore
3434
-
35-
uses: actions/download-artifact@v3
35+
uses: actions/download-artifact@v4
3636
name: Download nuget packages
3737
with:
3838
name: nuget
3939
path: ${{ github.workspace }}/artifacts/packages/nuget
4040
-
41-
uses: actions/download-artifact@v3
41+
uses: actions/download-artifact@v4
4242
name: Download native packages
4343
with:
4444
name: native-${{ runner.os }}

.github/workflows/_artifacts_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Restore State
2525
uses: ./.github/actions/artifacts-restore
2626
-
27-
uses: actions/download-artifact@v3
27+
uses: actions/download-artifact@v4
2828
name: Download nuget packages
2929
with:
3030
name: nuget

.github/workflows/_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ jobs:
2929
run: dotnet run/build.dll --target=Package
3030
-
3131
name: 'Upload nuget packages'
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
if: matrix.os == 'windows-latest'
3434
with:
3535
name: nuget
3636
path: ${{ github.workspace }}/artifacts/packages/nuget
3737
-
3838
name: 'Upload native packages'
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
if: matrix.os == 'windows-latest'
4141
with:
4242
name: native-${{ runner.os }}
4343
path: ${{ github.workspace }}/artifacts/packages/native/*.zip
4444
-
4545
name: 'Upload native packages'
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
if: matrix.os != 'windows-latest'
4848
with:
4949
name: native-${{ runner.os }}

.github/workflows/_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: Restore State
3333
uses: ./.github/actions/artifacts-restore
3434
-
35-
uses: actions/download-artifact@v3
35+
uses: actions/download-artifact@v4
3636
name: Download nuget packages
3737
with:
3838
name: nuget

.github/workflows/_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: Restore State
2929
uses: ./.github/actions/artifacts-restore
3030
-
31-
uses: actions/download-artifact@v3
31+
uses: actions/download-artifact@v4
3232
name: Download nuget packages
3333
with:
3434
name: nuget

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,19 @@ jobs:
111111
name: Restore State
112112
uses: ./.github/actions/artifacts-restore
113113
-
114-
uses: actions/download-artifact@v3
114+
uses: actions/download-artifact@v4
115115
name: Download native linux packages
116116
with:
117117
name: native-Linux
118118
path: ${{ github.workspace }}/artifacts/packages/native
119119
-
120-
uses: actions/download-artifact@v3
120+
uses: actions/download-artifact@v4
121121
name: Download native windows packages
122122
with:
123123
name: native-Windows
124124
path: ${{ github.workspace }}/artifacts/packages/native
125125
-
126-
uses: actions/download-artifact@v3
126+
uses: actions/download-artifact@v4
127127
name: Download native macos packages
128128
with:
129129
name: native-macOS

0 commit comments

Comments
 (0)