Skip to content

Commit 7112508

Browse files
Bump actions/upload-artifact from 3 to 4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 10d420d commit 7112508

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/Build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
cp ./target/${{matrix.config.target_triple}}/release/${{ needs.init.outputs.BINARY_NAME}} ./release-tmp/
162162
163163
- name: Upload a Build Artifact
164-
uses: actions/upload-artifact@v3
164+
uses: actions/upload-artifact@v4
165165
with:
166166
name: ${{ needs.init.outputs.BINARY_NAME}}-${{ github.sha }}-${{ matrix.config.artifact }}
167167
path: release-tmp

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
toolchain: stable
1616
default: true
1717
- run: cargo build --release -j`nproc`
18-
- uses: actions/upload-artifact@v3
18+
- uses: actions/upload-artifact@v4
1919
with:
2020
name: linux-artifact
2121
path: target/release/nomino
@@ -28,7 +28,7 @@ jobs:
2828
toolchain: stable
2929
default: true
3030
- run: cargo build --release -j`sysctl -n hw.physicalcpu`
31-
- uses: actions/upload-artifact@v3
31+
- uses: actions/upload-artifact@v4
3232
with:
3333
name: macos-artifact
3434
path: target/release/nomino
@@ -41,7 +41,7 @@ jobs:
4141
toolchain: stable
4242
default: true
4343
- run: cargo build --release
44-
- uses: actions/upload-artifact@v3
44+
- uses: actions/upload-artifact@v4
4545
with:
4646
name: windows-artifact
4747
path: target\release\nomino.exe

0 commit comments

Comments
 (0)