Skip to content

Commit 6923d4c

Browse files
chore(build): use artifacts@v4 (#126)
1 parent 93869d4 commit 6923d4c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ jobs:
7070
if: success() && matrix.os == 'ubuntu-latest'
7171
run: dotnet pack --no-restore --no-build --configuration Debug --include-symbols -p:SymbolPackageFormat=snupkg -o $GITHUB_WORKSPACE/packages
7272

73-
- uses: actions/upload-artifact@v3
73+
- uses: actions/upload-artifact@v4
7474
name: 'Upload Packages'
7575
if: success() && matrix.os == 'ubuntu-latest'
7676
with:
7777
name: packages
7878
path: ${{ github.workspace }}/packages/**/*
7979

80-
- uses: actions/upload-artifact@v3
80+
- uses: actions/upload-artifact@v4
8181
name: 'Upload Artifacts'
8282
if: success() && matrix.os == 'ubuntu-latest'
8383
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
branch: ${{ github.ref_name }}
4141
workflow_id: 'release.yml'
4242

43-
- uses: actions/download-artifact@v3
43+
- uses: actions/download-artifact@v4
4444
name: Download build artifacts
4545
with:
4646
name: artifacts
@@ -70,7 +70,7 @@ jobs:
7070
exit $exitCode
7171
fi
7272
73-
- uses: actions/download-artifact@v3
73+
- uses: actions/download-artifact@v4
7474
name: Download Package Artifact
7575
if: success() && (steps.affected.outputs.should_deploy == 'true' || github.event.inputs.skip_affected || steps.last_successful_commit.outputs.commit_hash == '')
7676
with:

0 commit comments

Comments
 (0)