Skip to content

Commit fa5e5ad

Browse files
committed
Upgrade GitHub Actions for Node 24 compatibility
1 parent 6234de1 commit fa5e5ad

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
31+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
3232

33-
# Initializes the CodeQL tools for scanning.
33+
# v6
3434
- name: Initialize CodeQL
3535
uses: github/codeql-action/init@fdbfb4d2750291e159f0156def62b853c2798ca2
3636
with:

.github/workflows/pypi-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 20
1818
steps:
1919
- name: Checkout Concordia
20-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
20+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8# v6
2121
- name: Show Python setup
2222
run: |
2323
python --version
@@ -32,7 +32,7 @@ jobs:
3232
done
3333
ls dist/*
3434
- name: Save artifact
35-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
35+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f# v6
3636
with:
3737
name: dist
3838
path: ./dist
@@ -61,7 +61,7 @@ jobs:
6161
- '3.14'
6262
steps:
6363
- name: Load artifact
64-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
64+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131# v7
6565
with:
6666
name: dist
6767
path: ./dist
@@ -96,7 +96,7 @@ jobs:
9696
timeout-minutes: 10
9797
steps:
9898
- name: Load artifact
99-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
99+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131# v7
100100
with:
101101
name: dist
102102
path: ./dist

.github/workflows/scorecards-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
28+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8# v6
2929
with:
3030
persist-credentials: false
3131

@@ -49,7 +49,7 @@ jobs:
4949
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5050
# format to the repository Actions tab.
5151
- name: "Upload artifact"
52-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
52+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f# v6
5353
with:
5454
name: SARIF file
5555
path: results.sarif

.github/workflows/test-concordia.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout Concordia
43-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
44-
43+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
44+
# v6
4545
- name: Install Concordia
4646
uses: ./.github/actions/install
4747

.github/workflows/test-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
timeout-minutes: 90
4646
steps:
4747
- name: Checkout Concordia
48-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
49-
48+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
49+
# v6
5050
- name: Install Concordia
5151
uses: ./.github/actions/install
5252

0 commit comments

Comments
 (0)