Skip to content

Commit

Permalink
chore: upgrade actions/upload-artifact to v4, the v1 is deprecated an…
Browse files Browse the repository at this point in the history
…d blocks the CI execution
  • Loading branch information
aureamunoz committed Sep 27, 2024
1 parent 1f5e25f commit 56706f7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if: failure()
run: |
zip -R manifests-build-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration-tests-with-dockerio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
if: failure()
run: |
zip -R manifests-k8s-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
if: failure()
run: |
zip -R manifests-ocp-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
if: failure()
run: |
zip -R manifests-tekton-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
if: failure()
run: |
zip -R manifests-k8s-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
if: failure()
run: |
zip -R manifests-ocp-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
if: failure()
run: |
zip -R manifests-tekton-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
Expand Down

0 comments on commit 56706f7

Please sign in to comment.