Skip to content

Commit 1aa9f41

Browse files
committed
ci(deps): lock all action uses directives to commit hashes
1 parent c335600 commit 1aa9f41

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# the branch was updated. To keep PSR working with the configured release branches,
4949
# we force a checkout of the desired release branch but at the workflow sha HEAD.
5050
- name: Setup | Checkout Repository at workflow sha
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5252
with:
5353
fetch-depth: 0
5454
ref: ${{ github.sha }}

.github/workflows/validate.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- name: Setup | Checkout Repository
23+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2324
with:
2425
fetch-depth: 50 # Must at least retrieve a set of commits to compare changes
2526
# primarily because of any 'Rebase and Merge' PR action in GitHub
@@ -80,13 +81,13 @@ jobs:
8081

8182
steps:
8283
- name: Setup | Checkout Repository
83-
uses: actions/checkout@v4
84+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
8485
with:
8586
fetch-depth: 0
8687
ref: ${{ github.sha }}
8788

8889
- name: Validate | Commitlint
89-
uses: wagoid/commitlint-github-action@v6
90+
uses: wagoid/commitlint-github-action@b948419dd99f3fd78a6548d48f94e3df7f6bf3ed # v6.2.1
9091

9192

9293
validate-action:
@@ -101,14 +102,14 @@ jobs:
101102

102103
steps:
103104
- name: Setup | Checkout Repository
104-
uses: actions/checkout@v4
105+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
105106
with:
106107
fetch-depth: 1
107108
ref: ${{ github.sha }}
108109

109110
- name: Build | Action Container
110111
id: container-builder
111-
uses: docker/build-push-action@v6
112+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6.16.0
112113
with:
113114
context: ./src
114115
load: true # add to `docker images`

0 commit comments

Comments
 (0)