Skip to content

Commit 3634f01

Browse files
authored
[CI][Devops] Fix nodejs version warnings (intel#21515)
Use a newer version of `actions/checkout` which uses a `nodejs` version that doesn't throw a deprecated warning. Example warning [here](https://github.com/intel/llvm/actions/runs/23049450309), see bottom of the page. Also fix the one place we use node directly to use `nodejs24`. Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
1 parent 0f5c5e2 commit 3634f01

32 files changed

Lines changed: 41 additions & 41 deletions

.github/workflows/email-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository == 'intel/llvm'
1616
steps:
1717
- name: Fetch LLVM sources
18-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919
with:
2020
ref: ${{ github.event.pull_request.head.sha }}
2121

.github/workflows/pr-code-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: (github.repository == 'llvm/llvm-project' || github.repository == 'intel/llvm') && !contains(github.event.pull_request.labels.*.name, 'disable-lint')
2222
steps:
2323
- name: Fetch LLVM sources
24-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2525
with:
2626
fetch-depth: 2
2727

@@ -37,7 +37,7 @@ jobs:
3737
# We need to pull the script from the main branch, so that we ensure
3838
# we get the latest version of this script.
3939
- name: Fetch code formatting utils
40-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
40+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4141
with:
4242
repository: ${{ github.repository }}
4343
ref: ${{ github.base_ref }}

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: "Checkout code"
34-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
34+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3535
with:
3636
persist-credentials: false
3737

.github/workflows/sycl-aws.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
environment: aws
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828
with:
2929
sparse-checkout: devops/actions/aws-ec2
3030
ref: ${{ inputs.ref || github.sha }}

.github/workflows/sycl-clang-tidy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
image: ghcr.io/intel/llvm/sycl_ubuntu2404_nightly:latest
2626
options: -u 1001:1001
2727
steps:
28-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
28+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2929
with:
3030
sparse-checkout: |
3131
devops/actions

.github/workflows/sycl-containers.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
build_args: ""
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v6
56+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5757
with:
5858
fetch-depth: 2
5959
- name: Build and Push Container
@@ -89,7 +89,7 @@ jobs:
8989
tag: latest
9090
steps:
9191
- name: Checkout
92-
uses: actions/checkout@v6
92+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9393
with:
9494
fetch-depth: 2
9595
- name: Build and Push Container

.github/workflows/sycl-coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
options: -u 1001:1001
2929

3030
steps:
31-
- uses: actions/checkout@v6
31+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3232
with:
3333
sparse-checkout: |
3434
devops/actions

.github/workflows/sycl-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
if: github.repository == 'intel/llvm'
4141
steps:
42-
- uses: actions/checkout@v6
42+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4343
with:
4444
path: repo
4545
- name: Install deps

.github/workflows/sycl-linux-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
echo "Unsupported extension"
173173
exit 1
174174
fi
175-
- uses: actions/checkout@v6
175+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
176176
with:
177177
sparse-checkout: |
178178
devops/actions

.github/workflows/sycl-linux-precommit-aws.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
environment: aws
5050
steps:
51-
- uses: actions/checkout@v6
51+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5252
with:
5353
sparse-checkout: devops/actions/aws-ec2
5454
- run: npm install ./devops/actions/aws-ec2
@@ -115,7 +115,7 @@ jobs:
115115
runs-on: ubuntu-latest
116116
environment: aws
117117
steps:
118-
- uses: actions/checkout@v6
118+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
119119
with:
120120
sparse-checkout: devops/actions/aws-ec2
121121
- run: npm install ./devops/actions/aws-ec2

0 commit comments

Comments
 (0)