Skip to content

Commit 84cd089

Browse files
authored
Merge branch 'main' into waf/missing-prerequisite
2 parents cc0a686 + 8d5b859 commit 84cd089

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/coveo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Upload token for ${{matrix.env_name}}
6969
if: ${{ steps.generate-token.outcome == 'success' }}
70-
uses: actions/upload-artifact@v5
70+
uses: actions/upload-artifact@v6
7171
with:
7272
name: ${{matrix.env_name}}
7373
path: "./"
@@ -101,7 +101,7 @@ jobs:
101101
needs: generate-coveo-search-token
102102
steps:
103103
- name: Download Coveo search token
104-
uses: actions/download-artifact@v6
104+
uses: actions/download-artifact@v7
105105

106106
- name: View files
107107
run: ls -R

.github/workflows/ossf_scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848

4949
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF format to the repository Actions tab.
5050
- name: Upload artifact
51-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
51+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
5252
with:
5353
name: SARIF file
5454
path: results.sarif
5555
retention-days: 5
5656

5757
# Upload the results to GitHub's code scanning dashboard.
5858
- name: Upload SARIF results to code scanning
59-
uses: github/codeql-action/upload-sarif@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v3.29.5
59+
uses: github/codeql-action/upload-sarif@1b168cd39490f61582a9beae412bb7057a6b2c4e # v3.29.5
6060
with:
6161
sarif_file: results.sarif

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
run: npx playwright install --with-deps
1919
- name: Run Playwright tests
2020
run: npx playwright test --retries=2
21-
- uses: actions/upload-artifact@v5
21+
- uses: actions/upload-artifact@v6
2222
if: ${{ !cancelled() }}
2323
with:
2424
name: playwright-report
2525
path: tests/playwright-report/
2626
retention-days: 30
27-
- uses: actions/upload-artifact@v5
27+
- uses: actions/upload-artifact@v6
2828
if: ${{ !cancelled() }}
2929
with:
3030
name: test-results

0 commit comments

Comments
 (0)