Skip to content

Commit 613c675

Browse files
committed
Pin actions to exact version numbers
With renovate automatically updating versions we can use exact version numbers alongside pinned hashes. This ensures that renovate will quietly merge minor and patch versions, creating pull requests for major versions and hopefully never notify us about digest changes.
1 parent 3761e5d commit 613c675

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Perform checks before releasing
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
13+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1414
- run: |
1515
git fetch --quiet origin main
1616
git merge-base --is-ancestor HEAD origin/main
@@ -27,7 +27,7 @@ jobs:
2727
ruby: truffleruby
2828
runs-on: ${{ matrix.os }}
2929
steps:
30-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
30+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3131
- uses: ./.github/actions/test-ruby
3232
with:
3333
ruby-version: ${{ matrix.ruby }}
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
environment: Release
4040
steps:
41-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
41+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4242
- uses: cucumber/action-publish-rubygem@d8918cbdee789cfc78f346a96a59596b87795be1 # v1.0.0
4343
with:
4444
rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}
@@ -51,7 +51,7 @@ jobs:
5151
permissions:
5252
contents: write
5353
steps:
54-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
54+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5555
- uses: cucumber/action-create-github-release@cf2c6f77ba35d2424362e83393a1c4c004cf2ddb # v1.1.1
5656
with:
5757
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/rubocop.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
rubocop:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1616
- uses: ruby/setup-ruby@v1
1717
with:
1818
ruby-version: '3.4.7'

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
ruby: truffleruby
2626
runs-on: ${{ matrix.os }}
2727
steps:
28-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
28+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2929
- uses: ./.github/actions/test-ruby
3030
with:
3131
ruby-version: ${{ matrix.ruby }}

0 commit comments

Comments
 (0)