Skip to content

Commit f5e92c0

Browse files
committed
ci: drop pinned digests from workflows
1 parent 55f502b commit f5e92c0

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
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/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Generate token
2121
id: token
22-
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
22+
uses: tibdex/github-app-token@v2
2323
with:
2424
app_id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2525
installation_retrieval_mode: id
@@ -29,12 +29,12 @@ jobs:
2929
{"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

3636
- name: Generate readme
37-
uses: actionhippie/ansible-doctor@e7ada1e967dca103df8a2fe0aba5fb35daf8ac78 # v6
37+
uses: actionhippie/ansible-doctor@v6
3838
with:
3939
force: true
4040
verbose: true
@@ -43,7 +43,7 @@ jobs:
4343
run: git pull --autostash --rebase
4444

4545
- name: Commit changes
46-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
46+
uses: EndBug/add-and-commit@v9
4747
with:
4848
author_name: GitHub Actions
4949
author_email: github@webhippie.de

.github/workflows/flake.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ 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 }}
2525
permission-contents: write
2626

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

3232
- name: Install nix
33-
uses: cachix/install-nix-action@4e002c8ec80594ecd40e759629461e26c8abed15 # v31
33+
uses: cachix/install-nix-action@v31
3434

3535
- name: Update flake
3636
run: nix flake update
@@ -39,7 +39,7 @@ jobs:
3939
run: git pull --autostash --rebase
4040

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

.github/workflows/galaxy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
steps:
2222
- name: Checkout source
23-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
23+
uses: actions/checkout@v6
2424

2525
- name: Galaxy upload
26-
uses: actionhippie/ansible-galaxy@378495a09473f51f11c73206980d804f2180d9e9 # v1
26+
uses: actionhippie/ansible-galaxy@v1
2727
with:
2828
token: ${{ secrets.GALAXY_TOKEN }}
2929

.github/workflows/general.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout source
24-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
24+
uses: actions/checkout@v6
2525

2626
- name: Role linting
2727
uses: ansible/ansible-lint@main
@@ -44,10 +44,10 @@ jobs:
4444
run: rm -rf /opt/hostedtoolcache/Python
4545

4646
- name: Checkout source
47-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
47+
uses: actions/checkout@v6
4848

4949
- name: Setup Python
50-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
50+
uses: actions/setup-python@v6
5151
with:
5252
python-version: 3.13
5353

.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: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
26+
uses: tibdex/github-app-token@v2
2727
with:
2828
app_id: ${{ secrets.TOKEN_EXCHANGE_APP }}
2929
installation_retrieval_mode: id
@@ -33,7 +33,7 @@ jobs:
3333
{"contents": "write"}
3434
3535
- name: Checkout source
36-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
36+
uses: actions/checkout@v6
3737
with:
3838
token: ${{ steps.token.outputs.token }}
3939

@@ -58,7 +58,7 @@ jobs:
5858
run: git pull --autostash --rebase
5959

6060
- name: Commit changes
61-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
61+
uses: EndBug/add-and-commit@v9
6262
with:
6363
author_name: GitHub Actions
6464
author_email: github@webhippie.de

0 commit comments

Comments
 (0)