Skip to content

Commit 70e80bf

Browse files
chore(deps): update github actions
1 parent ff88e52 commit 70e80bf

18 files changed

Lines changed: 50 additions & 50 deletions

.github/workflows/check-fips-compliance-reqs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
check-boringssl-commit:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
28+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
2929

3030
- name: Read FIPS spec
3131
id: fips-spec

.github/workflows/check-links.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
check-links:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
19+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/ci-base.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
docker_manifest_sha_name: ${{ steps.set-outputs.outputs.docker_manifest_sha_name }}
6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
62+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
6363
with:
6464
fetch-depth: 0 # required for tag metadata
6565

@@ -79,7 +79,7 @@ jobs:
7979
run: make check
8080

8181
- name: Validate GoReleaser license
82-
uses: goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8 # v7
82+
uses: goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89 # v7
8383
env:
8484
GORELEASER_KEY: ${{ secrets.goreleaser_key }}
8585
with:
@@ -122,20 +122,20 @@ jobs:
122122

123123
- name: Configure AWS Credentials
124124
if: ${{ inputs.publish }}
125-
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6
125+
uses: aws-actions/configure-aws-credentials@e7f100cf4c008499ea8adda475de1042d6975c7b # v6
126126
with:
127127
role-to-assume: ${{ secrets.aws_oidc_role_arn }}
128128
aws-region: us-east-1
129129

130130
- name: Login to ECR
131131
if: ${{ inputs.publish }}
132-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
132+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
133133
with:
134134
registry: ${{ env.registry }}/${{ inputs.distribution }}
135135

136-
- uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
136+
- uses: docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4
137137

138-
- uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
138+
- uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
139139

140140
- name: Install cross-compilation toolchain
141141
if: inputs.fips
@@ -169,7 +169,7 @@ jobs:
169169

170170
- name: Configure AWS Credentials
171171
if: ${{ inputs.publish }}
172-
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6
172+
uses: aws-actions/configure-aws-credentials@e7f100cf4c008499ea8adda475de1042d6975c7b # v6
173173
with:
174174
role-to-assume: ${{ secrets.aws_oidc_role_arn }}
175175
aws-region: us-east-1
@@ -235,7 +235,7 @@ jobs:
235235
- name: Build binaries & packages with GoReleaser
236236
if: inputs.publish || steps.cache-goreleaser.outputs.cache-hit != 'true'
237237
id: goreleaser
238-
uses: goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8 # v7
238+
uses: goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89 # v7
239239
env:
240240
NFPM_PASSPHRASE: ${{ secrets.gpg_passphrase }}
241241
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
@@ -299,7 +299,7 @@ jobs:
299299
echo "binary_tmp=${BINARY_TMP}" >> $GITHUB_OUTPUT
300300
301301
- name: Build and load Docker image
302-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
302+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
303303
if: steps.cache-goreleaser.outputs.cache-hit == 'true'
304304
with:
305305
context: ${{ steps.copy-binary.outputs.binary_tmp }}

.github/workflows/ci-bump-component-versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
19+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
2020
with:
2121
fetch-depth: 0 # required for tag metadata
2222
token: ${{ secrets.RELEASE_TOKEN }}

.github/workflows/ci-host-config-drift.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
16+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/ci-nightly.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
workflow-run-id: ${{ steps.get-commit.outputs.workflow-run-id }}
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
30+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3131
with:
3232
sparse-checkout: |
3333
.github/actions
@@ -50,7 +50,7 @@ jobs:
5050
fips: [false, true]
5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
53+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
5454
with:
5555
sparse-checkout: |
5656
.github/actions

.github/workflows/ci-snapshot-cli.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
20+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
2121
with:
2222
fetch-depth: 0 # required for tag metadata
2323
sparse-checkout: cmd/nrdot-collector-builder
@@ -39,20 +39,20 @@ jobs:
3939
working-directory: cmd/nrdot-collector-builder
4040

4141
- name: Login to Docker
42-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
42+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
4343
if: ${{ env.ACT }}
4444
with:
4545
registry: docker.io
4646
username: ${{ vars.OTELCOMM_DOCKER_HUB_USERNAME }}
4747
password: ${{ secrets.OTELCOMM_DOCKER_HUB_PASSWORD }}
4848

49-
- uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
49+
- uses: docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4
5050

51-
- uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
51+
- uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
5252

5353
- name: Publish alpha with GoReleaser
5454
id: goreleaser
55-
uses: goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8 # v7
55+
uses: goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89 # v7
5656
with:
5757
distribution: goreleaser-pro
5858
version: "~> v2"
@@ -63,7 +63,7 @@ jobs:
6363
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
6464

6565
- name: Login to GitHub Container Registry for manifests
66-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
66+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
6767
if: ${{ !env.ACT }}
6868
with:
6969
registry: ghcr.io

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
distributions: ${{ steps.discover.outputs.distributions }}
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
31+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
3232
with:
3333
sparse-checkout: |
3434
.github/actions

.github/workflows/deploy-and-e2e.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
windows-e2e: ${{ steps.check-platform-specs.outputs.windows_e2e }}
6767
steps:
6868
- name: Checkout repository
69-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
69+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
7070
with:
7171
fetch-depth: 0
7272

@@ -180,11 +180,11 @@ jobs:
180180
TF_VAR_commit_sha_short: ${{ needs.setup.outputs.commit-sha-short }}
181181
steps:
182182
- name: Checkout
183-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
183+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
184184

185185
- name: Configure AWS Credentials
186186
id: configure-aws-credentials-for-eks
187-
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6
187+
uses: aws-actions/configure-aws-credentials@e7f100cf4c008499ea8adda475de1042d6975c7b # v6
188188
with:
189189
role-to-assume: ${{ secrets.aws_oidc_role_arn }}
190190
aws-region: us-east-1
@@ -238,11 +238,11 @@ jobs:
238238
TF_VAR_commit_sha_short: ${{ needs.setup.outputs.commit-sha-short }}
239239
steps:
240240
- name: Checkout
241-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
241+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
242242

243243
- name: Configure AWS Credentials
244244
id: configure-aws-credentials
245-
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6
245+
uses: aws-actions/configure-aws-credentials@e7f100cf4c008499ea8adda475de1042d6975c7b # v6
246246
with:
247247
role-to-assume: ${{ secrets.aws_oidc_role_arn }}
248248
aws-region: us-east-1
@@ -311,11 +311,11 @@ jobs:
311311
TF_VAR_commit_sha_short: ${{ needs.setup.outputs.commit-sha-short }}
312312
steps:
313313
- name: Checkout
314-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
314+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
315315

316316
- name: Configure AWS Credentials
317317
id: configure-aws-credentials
318-
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6
318+
uses: aws-actions/configure-aws-credentials@e7f100cf4c008499ea8adda475de1042d6975c7b # v6
319319
with:
320320
role-to-assume: ${{ secrets.aws_oidc_role_arn }}
321321
aws-region: us-east-1

.github/workflows/lint-renovate-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
14+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
1515

1616
- name: Install Renovate config validator
1717
run: npm install --global renovate

0 commit comments

Comments
 (0)