chore(deps): bump actions/upload-artifact from 5 to 7 (#13099)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v5...v7)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2026-03-06 12:40:01 -05:00
committed by GitHub
parent adce71cb1c
commit 6c2270a7e7
3 changed files with 3 additions and 3 deletions

View File

@@ -107,7 +107,7 @@ jobs:
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }} if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
run: | run: |
awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true; awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true;
- uses: actions/upload-artifact@v5 - uses: actions/upload-artifact@v7
with: with:
name: ${{ steps.set-output.outputs.FILEPATH }} name: ${{ steps.set-output.outputs.FILEPATH }}
path: ${{ github.workspace }}/ab-results-*.json path: ${{ github.workspace }}/ab-results-*.json

View File

@@ -29,7 +29,7 @@ jobs:
echo ${{ github.event.pull_request.html_url }} > ./pr/PRurl echo ${{ github.event.pull_request.html_url }} > ./pr/PRurl
cat output.log | sed -E 's:/home/runner/work/free-programming-books/|⚠.+::' | uniq > ./pr/error.log cat output.log | sed -E 's:/home/runner/work/free-programming-books/|⚠.+::' | uniq > ./pr/error.log
- uses: actions/upload-artifact@v5 - uses: actions/upload-artifact@v7
if: always() if: always()
with: with:
name: pr name: pr

View File

@@ -94,7 +94,7 @@ jobs:
# Only if the linter step was executed (success or failure) # Only if the linter step was executed (success or failure)
- name: Upload linter output artifact - name: Upload linter output artifact
if: steps.run_linter.conclusion == 'success' || steps.run_linter.conclusion == 'failure' if: steps.run_linter.conclusion == 'success' || steps.run_linter.conclusion == 'failure'
uses: actions/upload-artifact@v5 uses: actions/upload-artifact@v7
with: with:
name: rtl-linter-output # Name of the artifact name: rtl-linter-output # Name of the artifact
path: rtl-linter-output.log # Path to the output file path: rtl-linter-output.log # Path to the output file