Skip to content

Commit

Permalink
Bump actions/upload-artifact from 4.0.0 to 4.1.0 (#28)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.0.0 to 4.1.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.0.0...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 18, 2024
1 parent e934f33 commit e2c30e9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ jobs:
- run: tar -cvf Out/macOSRelease.tar -C target/release/bundle/osx/ $(ls target/release/bundle/osx/)
- run: tar -cvf OutDebugAArch64/macOSDebug.tar -C target/aarch64-apple-darwin/debug/bundle/osx/ $(ls target/aarch64-apple-darwin/debug/bundle/osx/)
- run: tar -cvf OutAArch64/macOSRelease.tar -C target/aarch64-apple-darwin/release/bundle/osx/ $(ls target/aarch64-apple-darwin/release/bundle/osx/)
- uses: actions/upload-artifact@v4.0.0
- uses: actions/upload-artifact@v4.1.0
with:
name: macOS x86_64 Debug
path: OutDebug/macOSDebug.tar
- uses: actions/upload-artifact@v4.0.0
- uses: actions/upload-artifact@v4.1.0
with:
name: macOS x86_64 Release
path: Out/macOSRelease.tar
- uses: actions/upload-artifact@v4.0.0
- uses: actions/upload-artifact@v4.1.0
with:
name: macOS AArch64 Debug
path: OutDebugAArch64/macOSDebug.tar
- uses: actions/upload-artifact@v4.0.0
- uses: actions/upload-artifact@v4.1.0
with:
name: macOS AArch64 Release
path: OutAArch64/macOSRelease.tar
Expand All @@ -74,11 +74,11 @@ jobs:
- run: cargo install cargo-bundle
- run: cargo bundle
- run: cargo bundle --release
- uses: actions/upload-artifact@v4.0.0
- uses: actions/upload-artifact@v4.1.0
with:
name: Linux Debug
path: target/debug/bundle/deb/*.deb
- uses: actions/upload-artifact@v4.0.0
- uses: actions/upload-artifact@v4.1.0
with:
name: Linux Release
path: target/release/bundle/deb/*.deb
Expand All @@ -91,11 +91,11 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
- run: cargo build -Zunstable-options --out-dir=out-debug
- run: cargo build --release -Zunstable-options --out-dir=out
- uses: actions/upload-artifact@v4.0.0
- uses: actions/upload-artifact@v4.1.0
with:
name: Windows Debug
path: out-debug/*.exe
- uses: actions/upload-artifact@v4.0.0
- uses: actions/upload-artifact@v4.1.0
with:
name: Windows Release
path: out/*.exe

0 comments on commit e2c30e9

Please sign in to comment.