Skip to content

Commit

Permalink
chore(deps): update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 3, 2024
1 parent 25984fe commit 0d34386
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_test_run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0d34386

Please sign in to comment.