Skip to content

Commit c533627

Browse files
authored
Merge pull request #31 from embik/dependabot/github_actions/all-github-actions-629ba184c3
🌱 Bump GitHub Actions and upgrade to golangci-lint v2.1.1
2 parents 17e4b1a + 3014822 commit c533627

File tree

7 files changed

+192
-183
lines changed

7 files changed

+192
-183
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,13 @@ jobs:
3232
id: vars
3333
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
3434
- name: Set up Go
35-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
35+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
3636
with:
3737
go-version: ${{ steps.vars.outputs.go_version }}
3838
- name: golangci-lint
39-
uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 # tag=v6.5.0
39+
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # tag=v7.0.0
4040
with:
41-
version: v1.64.5
42-
args: --out-format=colored-line-number
41+
version: v2.1.1
4342
working-directory: ${{matrix.working-directory}}
4443

4544
golangci-lint: # aggregate the results of the matrix job. This we can depend on in the branch protection rule.
@@ -62,7 +61,7 @@ jobs:
6261
id: vars
6362
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
6463
- name: Set up Go
65-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
64+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
6665
with:
6766
go-version: ${{ steps.vars.outputs.go_version }}
6867
- name: make test
@@ -77,7 +76,7 @@ jobs:
7776
id: vars
7877
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
7978
- name: Set up Go
80-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
79+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
8180
with:
8281
go-version: ${{ steps.vars.outputs.go_version }}
8382
- name: make verify-modules

.github/workflows/ossf-scorecard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Upload the results as artifacts.
4545
- name: "Upload artifact"
46-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # tag=v4.6.1
46+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # tag=v4.6.2
4747
with:
4848
name: SARIF file
4949
path: results.sarif

.github/workflows/pr-dependabot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: vars
2525
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
2626
- name: Set up Go
27-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
27+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
2828
with:
2929
go-version: ${{ steps.vars.outputs.go_version }}
3030
- name: Update all modules

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
id: vars
2121
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
2222
- name: Set up Go
23-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
23+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # tag=v5.4.0
2424
with:
2525
go-version: ${{ steps.vars.outputs.go_version }}
2626
- name: Generate release binaries

0 commit comments

Comments
 (0)