Skip to content

Commit bed1152

Browse files
committed
ci: drop pinned digests from workflows
1 parent f8bd57e commit bed1152

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/automerge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Generate token
2222
id: token
23-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
23+
uses: actions/create-github-app-token@v2
2424
with:
2525
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2626
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
@@ -29,7 +29,7 @@ jobs:
2929
permission-issues: write
3030

3131
- name: Fetch metadata
32-
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a # v2
32+
uses: dependabot/fetch-metadata@v2
3333
with:
3434
github-token: ${{ secrets.GITHUB_TOKEN }}
3535

.github/workflows/flake.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
steps:
1818
- name: Generate token
1919
id: token
20-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
20+
uses: actions/create-github-app-token@v2
2121
with:
2222
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2323
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
2424
permission-contents: write
2525

2626
- name: Checkout source
27-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
27+
uses: actions/checkout@v6
2828
with:
2929
token: ${{ steps.token.outputs.token }}
3030

3131
- name: Install nix
32-
uses: cachix/install-nix-action@4e002c8ec80594ecd40e759629461e26c8abed15 # v31
32+
uses: cachix/install-nix-action@v31
3333

3434
- name: Update flake
3535
run: nix flake update
@@ -38,7 +38,7 @@ jobs:
3838
run: git pull --autostash --rebase
3939

4040
- name: Commit changes
41-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
41+
uses: EndBug/add-and-commit@v9
4242
with:
4343
author_name: GitHub Actions
4444
author_email: github@webhippie.de

.github/workflows/general.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout source
22-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
22+
uses: actions/checkout@v6
2323

2424
- name: Setup golang
25-
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
25+
uses: actions/setup-go@v6
2626
with:
2727
go-version-file: go.mod
2828

@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Coverage report
5454
if: github.event_name != 'pull_request'
55-
uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699 # v1
55+
uses: codacy/codacy-coverage-reporter-action@v1
5656
with:
5757
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
5858
coverage-reports: coverage.out

.github/workflows/release.yml

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

1818
steps:
1919
- name: Setup nodejs
20-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: lts/*
2323

2424
- name: Generate token
2525
id: token
26-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
26+
uses: actions/create-github-app-token@v2
2727
with:
2828
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2929
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
@@ -32,7 +32,7 @@ jobs:
3232
permission-issues: write
3333

3434
- name: Checkout source
35-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
35+
uses: actions/checkout@v6
3636
with:
3737
token: ${{ steps.token.outputs.token }}
3838

@@ -57,7 +57,7 @@ jobs:
5757
run: git pull --rebase --autostash
5858

5959
- name: Commit changes
60-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
60+
uses: EndBug/add-and-commit@v9
6161
with:
6262
author_name: GitHub Actions
6363
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: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
21+
uses: actions/create-github-app-token@v2
2222
with:
2323
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2424
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
@@ -27,13 +27,13 @@ jobs:
2727
permission-issues: write
2828

2929
- name: Checkout source
30-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
30+
uses: actions/checkout@v6
3131
with:
3232
token: ${{ steps.token.outputs.token }}
3333
fetch-depth: 0
3434

3535
- name: Setup golang
36-
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
36+
uses: actions/setup-go@v6
3737
with:
3838
go-version-file: go.mod
3939

@@ -57,7 +57,7 @@ jobs:
5757
5858
- name: Create request
5959
id: request
60-
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8
60+
uses: peter-evans/create-pull-request@v8
6161
with:
6262
branch: update/tools
6363
delete-branch: true

0 commit comments

Comments
 (0)