Skip to content

Commit 878b8d2

Browse files
ci(tools): pin dependencies (#195)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a66ad54 commit 878b8d2

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

.github/workflows/binaries.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
repo-token: ${{ secrets.GITHUB_TOKEN }}
4242

4343
- name: Setup goreleaser
44-
uses: goreleaser/goreleaser-action@v6
44+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6
4545
with:
4646
install-only: true
4747

4848
- name: Setup signing
49-
uses: crazy-max/ghaction-import-gpg@v6
49+
uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6
5050
with:
5151
gpg_private_key: ${{ secrets.GNUPG_KEY }}
5252
passphrase: ${{ secrets.GNUPG_PASSWORD }}
@@ -80,7 +80,7 @@ jobs:
8080
8181
- name: Install cloudsmith
8282
if: startsWith(github.ref, 'refs/tags/')
83-
uses: cloudsmith-io/cloudsmith-cli-action@v1.0.4
83+
uses: cloudsmith-io/cloudsmith-cli-action@29f2cea568a5a8c8c6c7340ba3702a0a1277e229 # v1.0.4
8484
with:
8585
api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
8686

.github/workflows/docker.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout source
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2727

2828
- name: Docker meta
2929
id: meta
@@ -45,41 +45,41 @@ jobs:
4545
type=semver,pattern={{major}}
4646
4747
- name: Setup qemu
48-
uses: docker/setup-qemu-action@v3
48+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
4949

5050
- name: Setup buildx
5151
id: buildx
5252
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
5353

5454
- name: Setup cosign
5555
if: github.event_name != 'pull_request'
56-
uses: sigstore/cosign-installer@v3
56+
uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3
5757

5858
- name: Hub login
59-
uses: docker/login-action@v3
59+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6060
if: github.event_name != 'pull_request'
6161
with:
6262
username: ${{ secrets.DOCKER_USERNAME }}
6363
password: ${{ secrets.DOCKER_PASSWORD }}
6464

6565
- name: Quay login
66-
uses: docker/login-action@v3
66+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
6767
if: github.event_name != 'pull_request'
6868
with:
6969
registry: quay.io
7070
username: ${{ secrets.QUAY_USERNAME }}
7171
password: ${{ secrets.QUAY_PASSWORD }}
7272

7373
- name: Ghcr login
74-
uses: docker/login-action@v3
74+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
7575
if: github.event_name != 'pull_request'
7676
with:
7777
registry: ghcr.io
7878
username: ${{ github.actor }}
7979
password: ${{ secrets.GITHUB_TOKEN }}
8080

8181
- name: Build image
82-
uses: docker/build-push-action@v6
82+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
8383
with:
8484
builder: ${{ steps.buildx.outputs.name }}
8585
context: .
@@ -108,10 +108,10 @@ jobs:
108108

109109
steps:
110110
- name: Checkout source
111-
uses: actions/checkout@v5
111+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
112112

113113
- name: Hub readme
114-
uses: actionhippie/pushrm@v1
114+
uses: actionhippie/pushrm@d4137e5e7261e06ddc57e0efece0fb4f589abb0a # v1
115115
with:
116116
provider: dockerhub
117117
target: webhippie/terrastate
@@ -121,7 +121,7 @@ jobs:
121121
readme: README.md
122122

123123
- name: Quay readme
124-
uses: actionhippie/pushrm@v1
124+
uses: actionhippie/pushrm@d4137e5e7261e06ddc57e0efece0fb4f589abb0a # v1
125125
with:
126126
provider: quay
127127
target: quay.io/webhippie/terrastate

.github/workflows/flake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Generate token
1919
id: token
20-
uses: tibdex/github-app-token@v2
20+
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
2121
with:
2222
app_id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2323
installation_retrieval_mode: id

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717

1818
steps:
1919
- name: Checkout source
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2121
with:
2222
token: ${{ secrets.BOT_ACCESS_TOKEN }}
2323

2424
- name: Setup nodejs
25-
uses: actions/setup-node@v5
25+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2626
with:
2727
node-version: 22.x
2828

@@ -46,7 +46,7 @@ jobs:
4646
run: git pull --rebase --autostash
4747

4848
- name: Commit changes
49-
uses: EndBug/add-and-commit@v9
49+
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
5050
with:
5151
author_name: GitHub Actions
5252
author_email: github@webhippie.de

.github/workflows/tools.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Generate token
2020
id: token
21-
uses: tibdex/github-app-token@v2
21+
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
2222
with:
2323
app_id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2424
installation_retrieval_mode: id
@@ -28,13 +28,13 @@ jobs:
2828
{"contents": "write", "pull_requests": "write", "issues": "write"}
2929
3030
- name: Checkout source
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3232
with:
3333
token: ${{ steps.token.outputs.token }}
3434
fetch-depth: 0
3535

3636
- name: Setup golang
37-
uses: actions/setup-go@v6
37+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
3838
with:
3939
go-version-file: go.mod
4040

@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Create request
6060
id: request
61-
uses: peter-evans/create-pull-request@v7
61+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7
6262
with:
6363
branch: update/tools
6464
delete-branch: true

0 commit comments

Comments
 (0)