Skip to content

Commit 5461ce4

Browse files
Add comments for versions
1 parent fd86b0e commit 5461ce4

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/a11y_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
CI: true
4040
steps:
4141
- uses: actions/checkout@v5
42-
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
42+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
4343
with:
4444
node-version: 24
4545
- name: Install dependencies
4646
run: cd tests/playwright && npm ci && npm run install-deps
4747
- name: Run accessibility tests
4848
run: cd tests/playwright && npm run a11y-tests
49-
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
49+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5050
if: ${{ !cancelled() }}
5151
with:
5252
name: test-results-a11y-${{ github.sha }}

.github/workflows/download_tests.yml

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

6565
- name: Store artifacts
6666
if: always()
67-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
67+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6868
with:
6969
name: test-results
7070
path: results-${{github.run_id}}

.github/workflows/ensure_pre_commit_standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.13"
20-
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
20+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2121
with:
2222
node-version: 24
2323
- name: "Install npm dependencies"

.github/workflows/integration_tests.yml

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

9494
- name: Store artifacts
9595
if: always()
96-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
96+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9797
with:
9898
name: test-results
9999
path: results-${{github.run_id}}-${{matrix.label}}
@@ -114,7 +114,7 @@ jobs:
114114
run: cd tests/playwright && npm ci && npm run install-deps
115115
- name: Run Playwright tests
116116
run: cd tests/playwright && npm run integration-tests
117-
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
117+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
118118
if: ${{ !cancelled() }}
119119
with:
120120
name: test-results-${{ github.event.inputs.git_sha }}-${{ github.run_id }}

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v6
20-
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
20+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2121
with:
2222
node-version: 24
2323
cache: npm
@@ -37,7 +37,7 @@ jobs:
3737
docker cp $CONTAINER_ID:/app/python_coverage .
3838
timeout-minutes: 60
3939
- name: "Store coverage as an artifact"
40-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
40+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
4141
with:
4242
name: coverage-results
4343
path: python_coverage

0 commit comments

Comments
 (0)