From 0d343865d51fd2e628c7503433cfb797078d8bed Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 09:22:39 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v4 --- .github/workflows/integration_test.yaml | 4 ++-- .github/workflows/integration_test_run.yaml | 2 +- .github/workflows/test.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration_test.yaml b/.github/workflows/integration_test.yaml index f0ac68dbe..a973618b1 100644 --- a/.github/workflows/integration_test.yaml +++ b/.github/workflows/integration_test.yaml @@ -248,7 +248,7 @@ jobs: echo "CHARM_FILE=$(ls $CHARM_NAME_*.charm || echo UNKNOWN)" >> $GITHUB_ENV - name: Upload charm artifact if: ${{ env.CHARM_FILE != 'UNKNOWN' && !cancelled() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.CHARM_NAME }}-charm path: ${{ inputs.working-directory }}/${{ env.CHARM_FILE }} @@ -260,7 +260,7 @@ jobs: echo "$(echo '${{ needs.all-images.outputs.images }}' | jq -cr '.[]')" > ${{ env.CHARM_NAME }}-images - name: Upload image artifact if: ${{ always() && env.CHARM_NAME != 'UNKNOWN' && !cancelled() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.CHARM_NAME }}-images path: ${{ inputs.working-directory }}/${{ env.CHARM_NAME }}-images diff --git a/.github/workflows/integration_test_run.yaml b/.github/workflows/integration_test_run.yaml index f56db2e12..76a0bbc7f 100644 --- a/.github/workflows/integration_test_run.yaml +++ b/.github/workflows/integration_test_run.yaml @@ -346,7 +346,7 @@ jobs: echo "$(echo '${{ inputs.images }}' | jq -cr '.[]')" > ${{ env.CHARM_NAME }}-images - name: Upload image artifact if: ${{ always() && env.CHARM_NAME != 'UNKNOWN' && !cancelled() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.CHARM_NAME }}-images path: ${{ inputs.working-directory }}/${{ env.CHARM_NAME }}-images diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 248b49d8b..b994aceae 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -315,7 +315,7 @@ jobs: let json = JSON.stringify(reports); fs.writeFileSync('report.json', json); - name: Upload coverage report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() && github.event_name == 'pull_request' && !cancelled() with: name: report