Skip to content

Commit df0bf04

Browse files
committed
PR Checks: use v4 of upload-artifact and download-artifact
We can do this now that we have upgraded to `@actions/artifact@v2`; note that on GHES we are still using `@actions/artifact@v1`, but our PR checks are not running on GHES.
1 parent d5ac485 commit df0bf04

8 files changed

+8
-8
lines changed

.github/workflows/__config-export.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__diagnostics-export.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__export-file-baseline-information.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/debug-artifacts-failure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262
steps:
6363
- name: Download all artifacts
64-
uses: actions/download-artifact@v3
64+
uses: actions/download-artifact@v4
6565
- name: Check expected artifacts exist
6666
shell: bash
6767
run: |

.github/workflows/debug-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-latest
6868
steps:
6969
- name: Download all artifacts
70-
uses: actions/download-artifact@v3
70+
uses: actions/download-artifact@v4
7171
- name: Check expected artifacts exist
7272
shell: bash
7373
run: |

pr-checks/checks/config-export.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ steps:
1212
output: "${{ runner.temp }}/results"
1313
upload-database: false
1414
- name: Upload SARIF
15-
uses: actions/upload-artifact@v3
15+
uses: actions/upload-artifact@v4
1616
with:
1717
name: config-export-${{ matrix.os }}-${{ matrix.version }}.sarif.json
1818
path: "${{ runner.temp }}/results/javascript.sarif"

pr-checks/checks/diagnostics-export.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ steps:
2626
output: "${{ runner.temp }}/results"
2727
upload-database: false
2828
- name: Upload SARIF
29-
uses: actions/upload-artifact@v3
29+
uses: actions/upload-artifact@v4
3030
with:
3131
name: diagnostics-export-${{ matrix.os }}-${{ matrix.version }}.sarif.json
3232
path: "${{ runner.temp }}/results/javascript.sarif"

pr-checks/checks/export-file-baseline-information.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
with:
2020
output: "${{ runner.temp }}/results"
2121
- name: Upload SARIF
22-
uses: actions/upload-artifact@v3
22+
uses: actions/upload-artifact@v4
2323
with:
2424
name: with-baseline-information-${{ matrix.os }}-${{ matrix.version }}.sarif.json
2525
path: "${{ runner.temp }}/results/javascript.sarif"

0 commit comments

Comments
 (0)