Skip to content

Commit 6c06ff8

Browse files
committed
pin action checksums, add dependabot
1 parent 686875a commit 6c06ff8

4 files changed

Lines changed: 18 additions & 6 deletions

File tree

.github/dependabot.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
groups:
8+
actions:
9+
patterns:
10+
- "*"
11+
open-pull-requests-limit: 3
12+

.github/workflows/go-tests.yaml

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

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
2828

2929
- name: Set up Go ${{ matrix.go-version }}
30-
uses: actions/setup-go@v5
30+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
3131
with:
3232
go-version: ${{ matrix.go-version }}
3333
cache: false # cache not needed if there is no go.sum file

.github/workflows/release.yaml

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

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1717
with:
1818
fetch-depth: 0
1919

@@ -37,7 +37,7 @@ jobs:
3737
echo "Tag $GIT_REF_NAME is on main branch"
3838
3939
- name: Set up Go
40-
uses: actions/setup-go@v5
40+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
4141
with:
4242
go-version: '1.26'
4343
cache: false
@@ -55,7 +55,7 @@ jobs:
5555
./build-all.sh "$TAG_NAME"
5656
5757
- name: Create Release
58-
uses: softprops/action-gh-release@v2
58+
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
5959
with:
6060
files: |
6161
dist/CHECKSUMS.txt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616

1717
- name: Install Shellcheck
1818
# not needed in gh actions, but when running locally via act

0 commit comments

Comments
 (0)