Skip to content

Commit 2e26619

Browse files
ci(tools): update build tools (#93)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7f9f4ca commit 2e26619

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

.github/workflows/autoassign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
add-reviews:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: kentaro-m/auto-assign-action@v2.0.0
15+
- uses: kentaro-m/auto-assign-action@f4648c0a9fdb753479e9e75fc251f507ce17bb7e # v2.0.0
1616
...

.github/workflows/automerge.yml

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

1717
- name: Fetch metadata
1818
id: metadata
19-
uses: dependabot/fetch-metadata@v2
19+
uses: dependabot/fetch-metadata@08eff52bf64351f401fb50d4972fa95b9f2c2d1b # v2.4.0
2020
with:
2121
github-token: ${{ secrets.BOT_PAT_TOKEN }}
2222

.github/workflows/container.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
steps:
4242

4343
- name: Checkout
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4545
with:
4646
token: ${{ secrets.BOT_PAT_TOKEN }}
4747

4848
- name: Setup golang
4949
id: golang
50-
uses: actions/setup-go@v5
50+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
5151
with:
5252
go-version-file: .go-version
5353

@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Docker meta
7171
id: meta
72-
uses: docker/metadata-action@v5
72+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
7373
with:
7474
images: |
7575
ghcr.io/cbrgm/mastodon-github-action
@@ -87,15 +87,15 @@ jobs:
8787
8888
- name: Setup qemu
8989
id: qemu
90-
uses: docker/setup-qemu-action@v3
90+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
9191

9292
- name: Setup buildx
9393
id: buildx
94-
uses: docker/setup-buildx-action@v3
94+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
9595

9696
- name: Ghcr login
9797
id: login3
98-
uses: docker/login-action@v3
98+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
9999
if: github.event_name != 'pull_request'
100100
with:
101101
registry: ghcr.io
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: Build image
106106
id: publish
107-
uses: docker/build-push-action@v6
107+
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
108108
with:
109109
builder: ${{ steps.buildx.outputs.name }}
110110
context: .
@@ -123,14 +123,14 @@ jobs:
123123
steps:
124124

125125
- name: Checkout
126-
uses: actions/checkout@v4
126+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
127127
with:
128128
token: ${{ secrets.BOT_PAT_TOKEN }}
129129

130130
- name: Ghcr tags
131131
id: ghcrTags
132132
if: github.event_name != 'pull_request'
133-
uses: docker/metadata-action@v5
133+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
134134
with:
135135
images: ghcr.io/cbrgm/mastodon-github-action
136136
tags: |
@@ -142,7 +142,7 @@ jobs:
142142
- name: Ghcr manifest
143143
id: ghcr
144144
if: github.event_name != 'pull_request'
145-
uses: actionhippie/manifest@v1
145+
uses: actionhippie/manifest@5dc3b91e63a9410640f43d54f11d1d157050bd53 # v1.5.1
146146
with:
147147
username: cbrgm
148148
password: ${{ secrets.BOT_PAT_TOKEN }}

.github/workflows/go-binaries.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
steps:
2323
- name: Checkout source
2424
id: source
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626

2727
- name: Setup golang
2828
id: golang
29-
uses: actions/setup-go@v5
29+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
3030
with:
3131
go-version-file: .go-version
3232

@@ -39,15 +39,15 @@ jobs:
3939
run: make release
4040

4141
- name: Create GitHub Release
42-
uses: softprops/action-gh-release@v2
42+
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2.2.2
4343
if: startsWith(github.ref, 'refs/tags/')
4444
with:
4545
generate_release_notes: true
4646
files: "dist/*"
4747
token: ${{ secrets.BOT_PAT_TOKEN }}
4848

4949
- name: Update version
50-
uses: nowactions/update-majorver@v1
50+
uses: nowactions/update-majorver@f2014bbbba95b635e990ce512c5653bd0f4753fb # v1.1.2
5151
if: startsWith(github.ref, 'refs/tags/v')
5252

5353
...

.github/workflows/go-lint-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
steps:
2121
- name: Checkout source
2222
id: source
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424

2525
- name: Setup golang
2626
id: golang
27-
uses: actions/setup-go@v5
27+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2828
with:
2929
go-version-file: .go-version
3030

3131
- name: install golangci
32-
uses: giantswarm/install-binary-action@v3.0.0
32+
uses: giantswarm/install-binary-action@c37eb401e5092993fc76d545030b1d1769e61237 # v3.0.0
3333
with:
3434
binary: "golangci-lint"
3535
version: "2.1.6"

.github/workflows/notify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Send Telegram Notification on new release
16-
uses: cbrgm/telegram-github-action@v1
16+
uses: cbrgm/telegram-github-action@e1db8b264c0c56a624b6d0cb9b1d2bd7d32f4b02 # v1.3.4
1717
with:
1818
token: ${{ secrets.TELEGRAM_TOKEN }}
1919
to: ${{ secrets.TELEGRAM_CHAT_ID }}
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Send Mastodon Status on new release
2929
id: mastodon
30-
uses: cbrgm/mastodon-github-action@v2
30+
uses: cbrgm/mastodon-github-action@adb400a75e66109332b0e3dcd5f07ceec475e5f7 # v2.1.15
3131
if: ${{ !github.event.repository.private }}
3232
with:
3333
access-token: ${{ secrets.MASTODON_ACCESS_TOKEN }}

.github/workflows/stale.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
label-issues:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/stale@v9
16+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
1717
name: Setting issue as idle
1818
with:
1919
repo-token: '${{ secrets.GITHUB_TOKEN }}'
@@ -24,7 +24,7 @@ jobs:
2424
operations-per-run: 100
2525
exempt-issue-labels: backlog
2626

27-
- uses: actions/stale@v9
27+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
2828
name: Setting PR as idle
2929
with:
3030
repo-token: '${{ secrets.GITHUB_TOKEN }}'

.github/workflows/tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636

3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3939
with:
4040
token: ${{ secrets.BOT_PAT_TOKEN }}
4141

0 commit comments

Comments
 (0)