Skip to content

Commit 9da35e1

Browse files
authored
ci: Pin composite actions SHA (#3320)
1 parent 8bec53f commit 9da35e1

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/actions/dd-ci-upload/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runs:
3030

3131
- name: Datadog CI CLI cache
3232
id: dd-ci-cli-cache
33-
uses: actions/cache@v3
33+
uses: actions/cache@2f8e54208210a422b2efd51efaa6bd6d7ca8920f # v3.4.3
3434
with:
3535
path: ./datadog-ci
3636
key: datadog-ci-cli-${{ env.DD_CI_CLI_BUILD }}

.github/actions/setup-go/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inputs:
77
runs:
88
using: "composite"
99
steps:
10-
- uses: actions/setup-go@v4
10+
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
1111
with:
1212
go-version: ${{ inputs.go-version }}
1313
cache: false
@@ -20,7 +20,7 @@ runs:
2020
# perhaps network activity occasionally.
2121
- name: Cache go
2222
id: cache-go
23-
uses: actions/cache@v3
23+
uses: actions/cache@2f8e54208210a422b2efd51efaa6bd6d7ca8920f # v3.4.3
2424
with:
2525
path: |
2626
/home/runner/.cache/go-build

.github/dependabot.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
version: 2
77
updates:
88
- package-ecosystem: "github-actions"
9-
directory: "/"
9+
directories:
10+
- "/"
11+
- "/.github/actions/*"
1012
schedule:
1113
interval: "monthly"
1214
groups:

0 commit comments

Comments
 (0)