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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 14, 2023
1 parent 2853f4b commit 8d51eef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cli-continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Build with Maven
run: './mvnw package'
- name: Temporarily save package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: java-binary
path: |
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: native-image --enable-url-protocols=https -jar nubesgen-cli-*.jar nubesgen-cli-windows
if: runner.os == 'Windows'
- name: Temporarily save package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nubesgen-cli-${{ matrix.os }}-java-${{ matrix.jdk-version }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build with Maven
run: './mvnw package'
- name: Temporarily save package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: java-binary
path: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
run: native-image --enable-url-protocols=https -jar nubesgen-cli-*.jar nubesgen-cli-windows
if: runner.os == 'Windows'
- name: Temporarily save package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
docker save application/application:${{ github.sha }} | gzip > /tmp/application.tar.gz
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docker-image
path: /tmp/application.tar.gz
Expand Down

0 comments on commit 8d51eef

Please sign in to comment.