Skip to content

Commit d0e5eba

Browse files
authored
Merge pull request #435 from pq-code-package/ci-deps-update
2 parents c2ce861 + 9524371 commit d0e5eba

File tree

9 files changed

+30
-30
lines changed

9 files changed

+30
-30
lines changed

.github/actions/cbmc/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ inputs:
2727
runs:
2828
using: composite
2929
steps:
30-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131
- uses: ./.github/actions/setup-shell
3232
with:
3333
nix-shell: ${{ inputs.nix-shell }}

.github/workflows/base.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Linting
1919
runs-on: ${{ matrix.system }}
2020
steps:
21-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2222
- uses: ./.github/actions/lint
2323
with:
2424
nix-shell: ci-linter
@@ -27,7 +27,7 @@ jobs:
2727
lint-markdown-link:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131
- uses: gaurav-nelson/github-action-markdown-link-check@3c3b66f1f7d0900e37b71eca45b63ea9eedfce31 # v1.0.17
3232
quickcheck:
3333
strategy:
@@ -53,7 +53,7 @@ jobs:
5353
name: Quickcheck (${{ matrix.target.name }})
5454
runs-on: ${{ matrix.target.runner }}
5555
steps:
56-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
56+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5757
- name: make quickcheck
5858
run: |
5959
OPT=0 make quickcheck
@@ -84,7 +84,7 @@ jobs:
8484
name: Quickcheck ACVP (${{ matrix.target.name }}, ${{ matrix.acvp-version }})
8585
runs-on: ${{ matrix.target.runner }}
8686
steps:
87-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
87+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8888
- name: Run ACVP test
8989
run: |
9090
./scripts/tests acvp --version ${{ matrix.acvp-version }}
@@ -114,7 +114,7 @@ jobs:
114114
name: Quickcheck bench (${{ matrix.target.name }})
115115
runs-on: ${{ matrix.target.runner }}
116116
steps:
117-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
117+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
118118
- name: "tests bench (cycles: NO)"
119119
run: |
120120
./scripts/tests bench -c NO
@@ -157,7 +157,7 @@ jobs:
157157
name: Quickcheck C90 (${{ matrix.target.name }})
158158
runs-on: ${{ matrix.target.runner }}
159159
steps:
160-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
160+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
161161
- name: make quickcheck
162162
run: |
163163
OPT=0 CFLAGS=-std=c90 make quickcheck
@@ -181,7 +181,7 @@ jobs:
181181
name: Quickcheck ${{ matrix.system }}
182182
runs-on: ${{ matrix.system }}
183183
steps:
184-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
184+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
185185
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
186186
- name: Build test
187187
shell: powershell
@@ -197,7 +197,7 @@ jobs:
197197
name: Quickcheck (Mingw-w64 ${{ matrix.mingw-version }})
198198
runs-on: windows-latest
199199
steps:
200-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
200+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
201201
- name: Install MinGW-w64
202202
run: choco install mingw --version=${{ matrix.mingw-version }} -y
203203
shell: cmd
@@ -214,7 +214,7 @@ jobs:
214214
system: [macos-latest, macos-13, ubuntu-latest, pqcp-arm64]
215215
runs-on: ${{ matrix.system }}
216216
steps:
217-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
217+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
218218
- name: make lib
219219
run: |
220220
make lib
@@ -232,7 +232,7 @@ jobs:
232232
name: scan-build (${{ matrix.target.name }})
233233
runs-on: ${{ matrix.target.runner }}
234234
steps:
235-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
235+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
236236
- uses: ./.github/actions/setup-apt
237237
with:
238238
packages: clang-tools clang

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
if: github.repository_owner == 'pq-code-package' && (github.event.label.name == 'benchmark' || github.ref == 'refs/heads/main')
6969
runs-on: self-hosted-${{ matrix.target.system }}
7070
steps:
71-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
71+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7272
- uses: ./.github/actions/bench
7373
if: ${{ !matrix.target.only_no_opt }}
7474
with:

.github/workflows/bench_ec2_reusable.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
label: ${{ steps.start-ec2-runner.outputs.label }}
8989
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
9090
steps:
91-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
91+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9292
- name: Determine AMI ID
9393
id: det_ami_id
9494
run: |
@@ -102,7 +102,7 @@ jobs:
102102
echo "Using AMI ID: $AMI_ID"
103103
echo "AMI_ID=$AMI_ID" >> $GITHUB_OUTPUT
104104
- name: Configure AWS credentials
105-
uses: aws-actions/configure-aws-credentials@b47578312673ae6fa5b5096b330d9fbac3d116df # v4.2.1
105+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1
106106
with:
107107
role-to-assume: ${{ env.AWS_ROLE }}
108108
aws-region: ${{ inputs.aws_region }}
@@ -125,7 +125,7 @@ jobs:
125125
needs: start-ec2-runner # required to start the main job when the runner is ready
126126
if: ${{ inputs.compiler == '' }}
127127
steps:
128-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
128+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
129129
- uses: ./.github/actions/bench
130130
if: ${{ inputs.opt == 'all' || inputs.opt == 'opt' }}
131131
with:
@@ -160,7 +160,7 @@ jobs:
160160
needs: start-ec2-runner # required to start the main job when the runner is ready
161161
if: ${{ inputs.compiler != '' }}
162162
steps:
163-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
163+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
164164
- uses: ./.github/actions/setup-apt
165165
with:
166166
packages: ${{ inputs.additional_packages }}
@@ -211,7 +211,7 @@ jobs:
211211
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
212212
steps:
213213
- name: Configure AWS credentials
214-
uses: aws-actions/configure-aws-credentials@b47578312673ae6fa5b5096b330d9fbac3d116df # v4.2.1
214+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1
215215
with:
216216
role-to-assume: ${{ env.AWS_ROLE }}
217217
aws-region: ${{ inputs.aws_region }}

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
name: Functional tests (${{ matrix.target.arch }}${{ matrix.target.mode != 'native' && ', cross' || ''}})
118118
runs-on: ${{ matrix.target.runner }}
119119
steps:
120-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
120+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
121121
- name: build + test
122122
uses: ./.github/actions/multi-functest
123123
with:
@@ -248,7 +248,7 @@ jobs:
248248
opt: no_opt
249249
runs-on: ${{ matrix.target.runner }}
250250
steps:
251-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
251+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
252252
- name: native build+functest (default)
253253
if: ${{ matrix.compiler.darwin || matrix.target.runner != 'macos-latest' }}
254254
uses: ./.github/actions/multi-functest
@@ -346,7 +346,7 @@ jobs:
346346
- external: true
347347
runs-on: ${{ matrix.target.runner }}
348348
steps:
349-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
349+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
350350
- name: Stack analysis
351351
uses: ./.github/actions/multi-functest
352352
with:
@@ -386,7 +386,7 @@ jobs:
386386
}}
387387
runs-on: ${{ matrix.target.runner }}
388388
steps:
389-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
389+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
390390
- name: "PCT enabled"
391391
uses: ./.github/actions/multi-functest
392392
with:
@@ -437,7 +437,7 @@ jobs:
437437
runs-on: ${{ matrix.system }}
438438
name: Check autogenerated files
439439
steps:
440-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
440+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
441441
- uses: ./.github/actions/setup-shell
442442
with:
443443
nix-shell: 'ci'

.github/workflows/ci_ec2_reusable.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
label: ${{ steps.remember-runner.outputs.label }}
8484
ec2-instance-id: ${{ steps.remember-runner.outputs.ec2-instance-id }}
8585
steps:
86-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
86+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8787
- name: Determine AMI ID
8888
id: det_ami_id
8989
run: |
@@ -97,7 +97,7 @@ jobs:
9797
echo "Using AMI ID: $AMI_ID"
9898
echo "AMI_ID=$AMI_ID" >> $GITHUB_OUTPUT
9999
- name: Configure AWS credentials
100-
uses: aws-actions/configure-aws-credentials@b47578312673ae6fa5b5096b330d9fbac3d116df # v4.2.1
100+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1
101101
with:
102102
role-to-assume: ${{ env.AWS_ROLE }}
103103
aws-region: ${{ env.AWS_REGION }}
@@ -146,7 +146,7 @@ jobs:
146146
needs: start-ec2-runner
147147
runs-on: ${{ needs.start-ec2-runner.outputs.label }}
148148
steps:
149-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
149+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
150150
- name: Linting
151151
if: ${{ inputs.lint }}
152152
uses: ./.github/actions/lint
@@ -198,7 +198,7 @@ jobs:
198198
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
199199
steps:
200200
- name: Configure AWS credentials
201-
uses: aws-actions/configure-aws-credentials@b47578312673ae6fa5b5096b330d9fbac3d116df # v4.2.1
201+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1
202202
with:
203203
role-to-assume: ${{ env.AWS_ROLE }}
204204
aws-region: ${{ env.AWS_REGION }}

.github/workflows/ct-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- ci_valgrind-varlat_gcc15
3939
runs-on: ${{ matrix.system }}
4040
steps:
41-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4242
- name: Setup nix
4343
uses: ./.github/actions/setup-shell
4444
with:

.github/workflows/nix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
outputs:
2020
run_needed: ${{ steps.check_run.outputs.run_needed }}
2121
steps:
22-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323
if: github.event_name != 'workflow_dispatch'
2424
with:
2525
fetch-depth: 0
@@ -60,7 +60,7 @@ jobs:
6060
name: build nix cache (${{ matrix.runner }})
6161
runs-on: ${{ matrix.runner }}
6262
steps:
63-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
63+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6464
- uses: ./.github/actions/setup-nix
6565
with:
6666
cache: true

.github/workflows/scorecard.yaml

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

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
with:
3030
persist-credentials: false
3131

0 commit comments

Comments
 (0)