Pop-up dictionary browser extension for language learning. Successor to Yomichan. (PERSONAL FORK)

Bump actions/upload-artifact from 4 to 5 (#2229)

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

---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '5'
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>

authored by

dependabot[bot]
dependabot[bot]
and committed by
GitHub
49bfa674 894663e9

+11 -11
+1 -1
.github/workflows/auto-approve.yml
··· 11 11 PR_NUM: ${{ github.event.number }} 12 12 run: echo "$PR_NUM" > pr_num.txt 13 13 - name: Upload the PR number 14 - uses: actions/upload-artifact@v4 14 + uses: actions/upload-artifact@v6 15 15 with: 16 16 name: pr_num 17 17 path: ./pr_num.txt
+9 -9
.github/workflows/playwright.yml
··· 71 71 if: github.event_name == 'pull_request' 72 72 73 73 - name: "[PR] Upload master-screenshots-outcome" 74 - uses: actions/upload-artifact@v4 74 + uses: actions/upload-artifact@v6 75 75 with: 76 76 name: master-screenshots-outcome-${{ matrix.shardIndex }} 77 77 path: master-screenshots-outcome ··· 90 90 run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} -u 2>&1 | tee ./playwright-output 91 91 if: github.event_name == 'push' 92 92 93 - - uses: actions/upload-artifact@v4 93 + - uses: actions/upload-artifact@v6 94 94 with: 95 95 name: playwright-screenshots-${{ matrix.shardIndex }} 96 96 path: test/playwright/__screenshots__/ ··· 98 98 99 99 - name: Upload blob report to GitHub Actions Artifacts 100 100 if: ${{ !cancelled() }} 101 - uses: actions/upload-artifact@v4 101 + uses: actions/upload-artifact@v6 102 102 with: 103 103 name: blob-report-${{ matrix.shardIndex }} 104 104 path: blob-report 105 105 retention-days: 1 106 106 107 - - uses: actions/upload-artifact@v4 107 + - uses: actions/upload-artifact@v6 108 108 with: 109 109 name: playwright-output-${{ matrix.shardIndex }} 110 110 path: playwright-output ··· 134 134 - name: Merge into JSON Report 135 135 run: npx playwright merge-reports --reporter json ./all-blob-reports > playwright-results.json 136 136 137 - - uses: actions/upload-artifact@v4 137 + - uses: actions/upload-artifact@v6 138 138 with: 139 139 name: playwright-report 140 140 path: playwright-report/ 141 141 142 - - uses: actions/upload-artifact@v4 142 + - uses: actions/upload-artifact@v6 143 143 with: 144 144 name: playwright-results-json 145 145 path: playwright-results.json ··· 152 152 pattern: playwright-screenshots-* 153 153 merge-multiple: true 154 154 155 - - uses: actions/upload-artifact@v4 155 + - uses: actions/upload-artifact@v6 156 156 with: 157 157 name: playwright-screenshots 158 158 path: test/playwright/__screenshots__/ ··· 176 176 if: github.event_name == 'pull_request' 177 177 178 178 - name: '[PR] Upload master-screenshots-outcome' 179 - uses: actions/upload-artifact@v4 179 + uses: actions/upload-artifact@v6 180 180 with: 181 181 name: master-screenshots-outcome 182 182 path: master-screenshots-outcome ··· 193 193 - name: Merge playwright output files 194 194 run: cat playwright-outputs/* > playwright-output 195 195 196 - - uses: actions/upload-artifact@v4 196 + - uses: actions/upload-artifact@v6 197 197 with: 198 198 name: playwright-output 199 199 path: playwright-output
+1 -1
.github/workflows/scorecard.yml
··· 56 56 # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF 57 57 # format to the repository Actions tab. 58 58 - name: "Upload artifact" 59 - uses: actions/upload-artifact@v4 59 + uses: actions/upload-artifact@v6 60 60 with: 61 61 name: SARIF file 62 62 path: results.sarif