Skip to content

Commit 3b63d70

Browse files
committed
ci: drop pinned digests from workflows
1 parent ea7295f commit 3b63d70

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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ jobs:
1616

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

2323
- name: Generate token
2424
id: token
25-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
25+
uses: actions/create-github-app-token@v2
2626
with:
2727
app-id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2828
private-key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
2929
permission-contents: write
3030

3131
- name: Checkout source
32-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
32+
uses: actions/checkout@v6
3333
with:
3434
token: ${{ steps.token.outputs.token }}
3535

@@ -51,7 +51,7 @@ jobs:
5151
run: semantic-release
5252

5353
- name: Commit changes
54-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
54+
uses: EndBug/add-and-commit@v9
5555
with:
5656
author_name: GitHub Actions
5757
author_email: github@webhippie.de

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222

2323
steps:
2424
- name: Checkout source
25-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
25+
uses: actions/checkout@v6
2626

2727
- name: Lint yaml
28-
uses: actionhippie/yamllint@fec655e2379e814a7d02881e8fe98d3d37509a01 # v1
28+
uses: actionhippie/yamllint@v1
2929
with:
3030
strict: true
3131

3232
- name: Update version
33-
uses: nowactions/update-majorver@f2014bbbba95b635e990ce512c5653bd0f4753fb # v1
33+
uses: nowactions/update-majorver@v1
3434
if: startsWith(github.ref, 'refs/tags/v')
3535

3636
...

0 commit comments

Comments
 (0)