Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4
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>
  • Loading branch information
dependabot[bot] authored Dec 15, 2023
1 parent 5ca0ac0 commit 27bfe5b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,28 +93,28 @@ jobs:
- id: upload-java
name: Upload JVM Artifact
if: needs.prepare.outputs.commit_count > 0 && runner.os == 'Linux'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jvm
path: ./target/ilo-*-jvm*
- id: upload-linux
name: Upload Linux Artifact
if: needs.prepare.outputs.commit_count > 0 && runner.os == 'Linux'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux
path: ./target/ilo-*-linux*
- id: upload-mac
name: Upload Mac Artifact
if: needs.prepare.outputs.commit_count > 0 && runner.os == 'macOS'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mac
path: ./target/ilo-*-mac*
- id: upload-windows
name: Upload Windows Artifact
if: needs.prepare.outputs.commit_count > 0 && runner.os == 'Windows'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows
path: ./target/ilo-*-windows*
Expand Down

0 comments on commit 27bfe5b

Please sign in to comment.