Skip to content

Commit

Permalink
build(deps): bump actions/upload-artifact from 3 to 4 (#43)
Browse files Browse the repository at this point in the history
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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 18, 2023
1 parent 6327caa commit 1b22adb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: cargo build --release
env:
RUSTFLAGS: '-C target-feature=+crt-static'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-windows
path: target/release/awsbck.exe
Expand All @@ -32,7 +32,7 @@ jobs:
run: cargo build --release
env:
LZMA_API_STATIC: 'true'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-macos
path: target/release/awsbck
Expand All @@ -56,7 +56,7 @@ jobs:
cargo build --release --target=aarch64-apple-darwin
env:
LZMA_API_STATIC: 'true'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-macos-aarch64
path: target/aarch64-apple-darwin/release/awsbck
Expand All @@ -76,7 +76,7 @@ jobs:
- uses: actions/checkout@v4
- name: Build release binary
run: cargo build --release --target x86_64-unknown-linux-musl
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-linux
path: target/x86_64-unknown-linux-musl/release/awsbck
Expand All @@ -99,7 +99,7 @@ jobs:
- run: cargo install cross --git https://github.com/cross-rs/cross
- uses: actions/checkout@v4
- run: cross build --release --target ${{ matrix.target }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-${{ matrix.arch }}
path: target/${{ matrix.target }}/release/awsbck
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: cargo build --release
env:
RUSTFLAGS: '-C target-feature=+crt-static'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-windows
path: target/release/awsbck.exe
Expand All @@ -31,7 +31,7 @@ jobs:
run: cargo build --release
env:
LZMA_API_STATIC: 'true'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-macos
path: target/release/awsbck
Expand All @@ -55,7 +55,7 @@ jobs:
cargo build --release --target=aarch64-apple-darwin
env:
LZMA_API_STATIC: 'true'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-macos-aarch64
path: target/aarch64-apple-darwin/release/awsbck
Expand All @@ -75,7 +75,7 @@ jobs:
- uses: actions/checkout@v4
- name: Build release binary
run: cargo build --release --target x86_64-unknown-linux-musl
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-linux
path: target/x86_64-unknown-linux-musl/release/awsbck
Expand All @@ -98,7 +98,7 @@ jobs:
- run: cargo install cross --git https://github.com/cross-rs/cross
- uses: actions/checkout@v4
- run: cross build --release --target ${{ matrix.target }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: awsbck-${{ matrix.arch }}
path: target/${{ matrix.target }}/release/awsbck
Expand Down

0 comments on commit 1b22adb

Please sign in to comment.