Skip to content

Commit ac0f527

Browse files
authored
ci: pinned action comments exact versions (#944)
2 parents b29bae6 + b09e2c5 commit ac0f527

9 files changed

Lines changed: 29 additions & 25 deletions

.github/workflows/build_docs.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
# see https://github.com/actions/checkout
24-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2525
with:
2626
persist-credentials: false
2727
- name: Set up JDK
2828
# see https://github.com/actions/setup-java
29-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
29+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
3030
with:
3131
java-version: '21'
3232
distribution: 'zulu'
@@ -35,7 +35,7 @@ jobs:
3535
run: ./gen.sh
3636
- name: Archive Schema documentation
3737
# https://github.com/actions/upload-artifact
38-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
38+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3939
with:
4040
name: XML-Schema-documentation
4141
path: docgen/xml/docs
@@ -48,20 +48,20 @@ jobs:
4848
steps:
4949
- name: Checkout
5050
# see https://github.com/actions/checkout
51-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
51+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5252
with:
5353
persist-credentials: false
5454
- name: Setup Python Environment
5555
# see https://github.com/actions/setup-python
56-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
56+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
5757
with:
5858
python-version: ${{ env.PYTHON_VERSION_DEFAULT }}
5959
architecture: 'x64'
6060
- name: Generate Schema documentation
6161
run: ./gen.sh
6262
- name: Archive Schema documentation
6363
# https://github.com/actions/upload-artifact
64-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
64+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6565
with:
6666
name: JSON-Schema-documentation
6767
path: docgen/json/docs
@@ -74,14 +74,14 @@ jobs:
7474
steps:
7575
- name: Checkout
7676
# see https://github.com/actions/checkout
77-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
77+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7878
with:
7979
persist-credentials: false
8080
- name: Generate Schema documentation
8181
run: ./gen.sh
8282
- name: Archive Schema documentation
8383
# https://github.com/actions/upload-artifact
84-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
84+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
8585
with:
8686
name: PROTO-Schema-documentation
8787
path: docgen/proto/docs

.github/workflows/bundle_2.0_schemas.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
22+
# see https://github.com/actions/checkout
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2324
with:
2425
persist-credentials: false
2526

2627
- name: Setup Node.js
27-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
28+
# see https://github.com/actions/setup-node
29+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2830
with:
2931
node-version: '20'
3032

.github/workflows/generate_algorithm_families.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
20+
# see https://github.com/actions/checkout
21+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2122
with:
2223
token: ${{ secrets.GITHUB_TOKEN }}
2324
persist-credentials: false
2425

2526
- name: Set up Python
26-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
27+
# see https://github.com/actions/setup-python
28+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
2729
with:
2830
python-version: '3.x'
2931

.github/workflows/test_java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
steps:
2424
- name: Checkout
2525
# see https://github.com/actions/checkout
26-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
26+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2727
with:
2828
persist-credentials: false
2929
- name: Set up JDK
3030
# see https://github.com/actions/setup-java
31-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
31+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
3232
with:
3333
java-version: '8'
3434
distribution: 'zulu'

.github/workflows/test_js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
# see https://github.com/actions/checkout
29-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030
with:
3131
persist-credentials: false
3232
- name: Setup Node.js
3333
# see https://github.com/actions/setup-node
34-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
34+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3535
with:
3636
node-version: '24.x'
3737
package-manager-cache: false

.github/workflows/test_php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
# see https://github.com/actions/checkout
29-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030
with:
3131
persist-credentials: false
3232
- name: Setup PHP
3333
# see https://github.com/shivammathur/setup-php
34-
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2
34+
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # 2.37.1
3535
with:
3636
php-version: "8.4"
3737
tools: composer:v2

.github/workflows/test_proto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
# see https://github.com/actions/checkout
29-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030
with:
3131
persist-credentials: false
3232
- name: Run test

.github/workflows/update_spdx_licenses.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
steps:
2424
- name: Checkout
2525
# see https://github.com/actions/checkout
26-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
26+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2727
with:
2828
ref: ${{ github.ref_name }}
2929
persist-credentials: false
3030
- name: Set up JDK
3131
# see https://github.com/actions/setup-java
32-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
32+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
3333
with:
3434
java-version: '21'
3535
distribution: 'zulu'
@@ -55,7 +55,7 @@ jobs:
5555
- name: Artifact changes
5656
if: ${{ steps.diff.outputs.changed == 'true' }}
5757
# https://github.com/actions/upload-artifact
58-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
58+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5959
with:
6060
retention-days: 1
6161
name: schema-spdx
@@ -75,7 +75,7 @@ jobs:
7575
steps:
7676
- name: Checkout
7777
# see https://github.com/actions/checkout
78-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
78+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
7979
with:
8080
ref: ${{ github.ref_name }}
8181
persist-credentials: false
@@ -95,7 +95,7 @@ jobs:
9595
fi
9696
- name: Fetch changes
9797
# https://github.com/actions/download-artifact
98-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
98+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
9999
with:
100100
name: schema-spdx
101101
path: schema

.github/workflows/zizmor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- name: Checkout
2424
# see https://github.com/actions/checkout
25-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
25+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2626
with:
2727
persist-credentials: false
2828
- name: Run zizmor

0 commit comments

Comments
 (0)