Skip to content

Commit

Permalink
Merge pull request #180 from signalwire/renovate/actions-upload-artif…
Browse files Browse the repository at this point in the history
…act-4.x

chore(deps): update actions/upload-artifact action to v4
  • Loading branch information
lucasmellos authored Dec 20, 2023
2 parents 7168ed0 + 4cc97e1 commit f5c9e51
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/actions/notify-ci-result/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ runs:
shell: bash
- name: Upload scan build artifacts
if: ${{ inputs.for == 'scan_build' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.scan_tar.outputs.ARTIFACT }}-${{ github.sha }}-${{ github.run_id }}
path: ${{ steps.scan_tar.outputs.ARTIFACT_PATH }}
Expand All @@ -81,7 +81,7 @@ runs:
### NOTIFY RUN TESTS
- name: Upload run tests artifacts
if: ${{ inputs.for == 'run_tests' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results-${{ github.sha }}-${{ github.run_number }}
path: ${{ inputs.test_logs_path }}/logs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-deb-packages-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ jobs:
run: |
sha512sum $image_tag.tar.gz > $image_tag.sha1
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: deb-${{inputs.PLATFORM}}-artifact
path: |
*.tar.gz
*.sha1
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: deb-changelog-artifact
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-deb-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
sha512sum $current_time-${{matrix.os_name}}.tar.gz > $current_time-${{matrix.os_name}}.sha1
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: deb-${{matrix.os_name}}-artifact
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-libs-metadata-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: |
echo "${{inputs.FILE_PATH_PREFIX}}" > metafile.txt
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{inputs.OS_PLATFORM}}-meta
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-rpm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: |
sha512sum ${{inputs.TARGET_ARTIFACT_NAME}}.tar.gz > ${{inputs.TARGET_ARTIFACT_NAME}}.sha1
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: rpm-${{inputs.PLATFORM}}-artifact
path: |
Expand Down

0 comments on commit f5c9e51

Please sign in to comment.