Skip to content

Commit 784c421

Browse files
committed
ci: drop pinned digests from workflows
1 parent 3ed7e67 commit 784c421

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
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/release.yml

Lines changed: 5 additions & 5 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,12 +32,12 @@ 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

3939
- name: Setup nodejs
40-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
40+
uses: actions/setup-node@v6
4141
with:
4242
node-version: 24.x
4343

@@ -70,7 +70,7 @@ jobs:
7070
run: git pull --rebase --autostash
7171

7272
- name: Commit changes
73-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
73+
uses: EndBug/add-and-commit@v9
7474
with:
7575
author_name: GitHub Actions
7676
author_email: github@webhippie.de

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout source
21-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
21+
uses: actions/checkout@v6
2222

2323
- name: Setup ruby
2424
uses: ruby/setup-ruby@v1
@@ -63,7 +63,7 @@ jobs:
6363

6464
steps:
6565
- name: Checkout source
66-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
66+
uses: actions/checkout@v6
6767

6868
- name: Setup ruby
6969
uses: ruby/setup-ruby@v1

0 commit comments

Comments
 (0)