File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4646
4747 - id : checkout
4848 name : Checkout Repository
49- uses : actions/checkout@v4
49+ uses : actions/checkout@v6
5050
5151 - id : compose
5252 name : Compose
Original file line number Diff line number Diff line change 1919
2020 steps :
2121 - name : Checkout repository
22- uses : actions/checkout@v4
22+ uses : actions/checkout@v6
2323
2424 - name : Install LLVM tools
2525 run : sudo apt-get update && sudo apt-get install -y llvm
Original file line number Diff line number Diff line change 1717 steps :
1818 - id : checkout
1919 name : Checkout Repository
20- uses : actions/checkout@v4
20+ uses : actions/checkout@v6
2121
2222 - id : setup
2323 name : Setup Toolchain
4242 steps :
4343 - id : checkout
4444 name : Checkout Repository
45- uses : actions/checkout@v4
45+ uses : actions/checkout@v6
4646
4747 - id : setup
4848 name : Setup Toolchain
Original file line number Diff line number Diff line change 1919
2020 steps :
2121 - name : Checkout repository
22- uses : actions/checkout@v4
22+ uses : actions/checkout@v6
2323
2424 - name : Install LLVM tools
2525 run : sudo apt-get update && sudo apt-get install -y llvm
@@ -59,13 +59,13 @@ jobs:
5959 # Triggered sub-workflow is not able to detect the original commit/PR which is available
6060 # in this workflow.
6161 - name : Store PR number
62- uses : actions/upload-artifact@v4
62+ uses : actions/upload-artifact@v5
6363 with :
6464 name : pr_number
6565 path : pr_number.txt
6666
6767 - name : Store commit SHA
68- uses : actions/upload-artifact@v4
68+ uses : actions/upload-artifact@v5
6969 with :
7070 name : commit_sha
7171 path : commit_sha.txt
7474 # is executed by a different workflow `upload_coverage.yml`. The reason for this
7575 # split is because `on.pull_request` workflows don't have access to secrets.
7676 - name : Store coverage report in artifacts
77- uses : actions/upload-artifact@v4
77+ uses : actions/upload-artifact@v5
7878 with :
7979 name : codecov_report
8080 path : ./codecov.json
Original file line number Diff line number Diff line change 2525 steps :
2626 - id : checkout
2727 name : Checkout Repository
28- uses : actions/checkout@v4
28+ uses : actions/checkout@v6
2929
3030 - id : sync
3131 name : Apply Labels from File
Original file line number Diff line number Diff line change 1515 steps :
1616 - id : checkout
1717 name : Checkout Repository
18- uses : actions/checkout@v4
18+ uses : actions/checkout@v6
1919
2020 - id : setup
2121 name : Setup Toolchain
4444 steps :
4545 - id : checkout
4646 name : Checkout Repository
47- uses : actions/checkout@v4
47+ uses : actions/checkout@v6
4848
4949 - id : setup
5050 name : Setup Toolchain
9696
9797 steps :
9898 - name : Checkout code
99- uses : actions/checkout@v4
99+ uses : actions/checkout@v6
100100
101101 - id : setup
102102 name : Setup Toolchain
@@ -119,7 +119,7 @@ jobs:
119119 steps :
120120 - id : checkout
121121 name : Checkout Repository
122- uses : actions/checkout@v4
122+ uses : actions/checkout@v6
123123
124124 - id : setup
125125 name : Setup Toolchain
@@ -173,7 +173,7 @@ jobs:
173173
174174 - id : checkout
175175 name : Checkout Repository
176- uses : actions/checkout@v4
176+ uses : actions/checkout@v6
177177
178178 - id : test
179179 name : Run E2E Tests
Original file line number Diff line number Diff line change 2222 steps :
2323 - name : " Download existing coverage report"
2424 id : prepare_report
25- uses : actions/github-script@v7
25+ uses : actions/github-script@v8
2626 with :
2727 script : |
2828 var fs = require('fs');
9696 echo "override_commit=$(<commit_sha.txt)" >> "$GITHUB_OUTPUT"
9797
9898 - name : Checkout repository
99- uses : actions/checkout@v4
99+ uses : actions/checkout@v6
100100 with :
101101 ref : ${{ steps.parse_previous_artifacts.outputs.override_commit || '' }}
102102 path : repo_root
You can’t perform that action at this time.
0 commit comments