Skip to content

Commit 7cb6b46

Browse files
authored
Merge pull request #1270 from pq-code-package/ci-deps
CI dependency updates
2 parents 854f0bc + 3cce02b commit 7cb6b46

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

.github/workflows/bench_ec2_reusable.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ jobs:
104104
echo "Using AMI ID: $AMI_ID"
105105
echo "AMI_ID=$AMI_ID" >> $GITHUB_OUTPUT
106106
- name: Configure AWS credentials
107-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
107+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
108108
with:
109109
role-to-assume: ${{ env.AWS_ROLE }}
110110
aws-region: ${{ inputs.aws_region }}
111111
- name: Start EC2 runner
112112
id: start-ec2-runner
113-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
113+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
114114
with:
115115
mode: start
116116
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}
@@ -217,12 +217,12 @@ jobs:
217217
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
218218
steps:
219219
- name: Configure AWS credentials
220-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
220+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
221221
with:
222222
role-to-assume: ${{ env.AWS_ROLE }}
223223
aws-region: ${{ inputs.aws_region }}
224224
- name: Stop EC2 runner
225-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
225+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
226226
with:
227227
mode: stop
228228
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}

.github/workflows/ci_ec2_container.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ jobs:
9292
echo "Using AMI ID: $AMI_ID"
9393
echo "AMI_ID=$AMI_ID" >> $GITHUB_OUTPUT
9494
- name: Configure AWS credentials
95-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
95+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
9696
with:
9797
role-to-assume: ${{ env.AWS_ROLE }}
9898
aws-region: ${{ env.AWS_REGION }}
9999
- name: Start EC2 runner
100100
id: start-ec2-runner-first
101101
continue-on-error: true
102-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
102+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
103103
with:
104104
mode: start
105105
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}
@@ -116,7 +116,7 @@ jobs:
116116
- name: Start EC2 runner (retry)
117117
id: start-ec2-runner-second
118118
if: steps.start-ec2-runner-first.outcome == 'failure'
119-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
119+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
120120
with:
121121
mode: start
122122
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}
@@ -194,12 +194,12 @@ jobs:
194194
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
195195
steps:
196196
- name: Configure AWS credentials
197-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
197+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
198198
with:
199199
role-to-assume: ${{ env.AWS_ROLE }}
200200
aws-region: ${{ env.AWS_REGION }}
201201
- name: Stop EC2 runner
202-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
202+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
203203
with:
204204
mode: stop
205205
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}

.github/workflows/ci_ec2_reusable.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ 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@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
105+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
106106
with:
107107
role-to-assume: ${{ env.AWS_ROLE }}
108108
aws-region: ${{ env.AWS_REGION }}
109109
- name: Start EC2 runner
110110
id: start-ec2-runner-first
111111
continue-on-error: true
112-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
112+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
113113
with:
114114
mode: start
115115
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}
@@ -127,7 +127,7 @@ jobs:
127127
- name: Start EC2 runner (retry)
128128
id: start-ec2-runner-second
129129
if: steps.start-ec2-runner-first.outcome == 'failure'
130-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
130+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
131131
with:
132132
mode: start
133133
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}
@@ -219,12 +219,12 @@ jobs:
219219
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
220220
steps:
221221
- name: Configure AWS credentials
222-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
222+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
223223
with:
224224
role-to-assume: ${{ env.AWS_ROLE }}
225225
aws-region: ${{ env.AWS_REGION }}
226226
- name: Stop EC2 runner
227-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
227+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
228228
with:
229229
mode: stop
230230
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}

.github/workflows/integration-opentitan.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828

2929
- name: Configure AWS credentials
30-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
30+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
3131
with:
3232
role-to-assume: ${{ env.AWS_ROLE }}
3333
aws-region: ${{ env.AWS_REGION }}
3434

3535
- name: Start EC2 runner
3636
id: start-ec2-runner
37-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
37+
uses: machulav/ec2-github-runner@fc6e909ff9c17ef354753807e8e9d6fa0a839436
3838
with:
3939
mode: start
4040
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}
@@ -94,13 +94,13 @@ jobs:
9494
if: ${{ always() }} # required to stop the runner even if errors occur
9595
steps:
9696
- name: Configure AWS credentials
97-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
97+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
9898
with:
9999
role-to-assume: ${{ env.AWS_ROLE }}
100100
aws-region: ${{ env.AWS_REGION }}
101101

102102
- name: Stop EC2 runner
103-
uses: machulav/ec2-github-runner@5ae8cda66fc6f3bae4e633ad93e6e61a061376bb # v2.4.2
103+
uses: machulav/ec2-github-runner@a6dbcefcf8a31a861f5e078bb153ed332130c512 # v2.4.3
104104
with:
105105
mode: stop
106106
github-token: ${{ secrets.AWS_GITHUB_TOKEN }}

.github/workflows/scorecard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
4949
# format to the repository Actions tab.
5050
- name: "Upload artifact"
51-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5252
with:
5353
name: SARIF file
5454
path: results.sarif

0 commit comments

Comments
 (0)