Skip to content

Commit fb452d2

Browse files
committed
(chore): pin third-party actions to SHAs
1 parent fbd1669 commit fb452d2

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/codeql-analysis.yml

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

99
steps:
1010
- name: Checkout repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1212
with:
1313
fetch-depth: 2
1414

.github/workflows/linter.yml

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

99
steps:
1010
- name: Checkout repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1212
with:
1313
fetch-depth: 2
1414

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2020

2121
- name: Set up Docker Buildx
22-
uses: docker/setup-buildx-action@v3
22+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
2323

2424
- name: Build Docker Image
25-
uses: docker/build-push-action@v3
25+
uses: docker/build-push-action@1104d471370f9806843c095c1db02b5a90c5f8b6 # v3.3.1
2626
with:
2727
context: .
2828
push: false
@@ -33,7 +33,7 @@ jobs:
3333
outputs: type=docker,dest=/tmp/${{ env.IMAGE }}.tar
3434

3535
- name: Cache Docker Image
36-
uses: actions/cache@v3
36+
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
3737
with:
3838
key: ${{ env.CACHE_KEY }}
3939
path: /tmp/${{ env.IMAGE }}.tar
@@ -45,10 +45,10 @@ jobs:
4545

4646
steps:
4747
- name: checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4949

5050
- name: Load Cache
51-
uses: actions/cache@v3
51+
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
5252
with:
5353
key: ${{ env.CACHE_KEY }}
5454
path: /tmp/${{ env.IMAGE }}.tar
@@ -88,10 +88,10 @@ jobs:
8888

8989
steps:
9090
- name: checkout
91-
uses: actions/checkout@v4
91+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9292

9393
- name: Load Cache
94-
uses: actions/cache@v3
94+
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
9595
with:
9696
key: ${{ env.CACHE_KEY }}
9797
path: /tmp/${{ env.IMAGE }}.tar

0 commit comments

Comments
 (0)