Skip to content

Commit b116400

Browse files
[chore] : Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go), [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 3df4ab11eba7bda6032a0b82a6bb43b11571feac to 09d2acae674a48949e3602304ab46fd20ae0c42f - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@3df4ab1...09d2aca) Updates `actions/setup-go` from 4.0.0 to 5.5.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@4d34df0...d35c59a) Updates `golangci/golangci-lint-action` from 3.4.0 to 8.0.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@08e2f20...4afd733) Updates `actions/upload-artifact` from 4.3.3 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@6546280...ea165f8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '09d2acae674a48949e3602304ab46fd20ae0c42f' dependency-type: direct:production dependency-group: actions - dependency-name: actions/setup-go dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: golangci/golangci-lint-action dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 218323f commit b116400

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/actionlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
actionlint:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
14+
- uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.0.0
1515
- name: "Check workflow files"
1616
uses: docker://docker.mirror.hashicorp.services/rhysd/actionlint:latest
1717
with:

.github/workflows/test-and-build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
15+
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.0.0
1616
- name: Setup Go
17-
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
17+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
1818
with:
1919
go-version-file: go.mod
2020
- name: Download go modules
@@ -30,7 +30,7 @@ jobs:
3030
- name: Vet code
3131
run: go vet ./...
3232
- name: Run golangci-lint
33-
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5
33+
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9
3434

3535
go-test:
3636
runs-on: ubuntu-latest
@@ -44,9 +44,9 @@ jobs:
4444
TEST_RESULTS_PATH: '/tmp/test-results'
4545
steps:
4646
- name: Checkout Code
47-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
47+
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.0.0
4848
- name: Setup Go
49-
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
49+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
5050
with:
5151
go-version: ${{ matrix.go-version }}
5252
- name: Install gotestsum
@@ -60,12 +60,12 @@ jobs:
6060
run: |
6161
gotestsum --format=short-verbose --junitfile "$TEST_RESULTS_PATH/gotestsum-report.xml" -- -p 2 -cover -coverprofile=coverage.out ./...
6262
- name: Upload and save artifacts
63-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
63+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
6464
with:
6565
path: ${{ env.TEST_RESULTS_PATH }}
6666
name: tests-linux-${{matrix.go-version}}
6767
- name: Upload coverage report
68-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
68+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
6969
with:
7070
path: coverage.out
7171
name: Coverage-report-${{matrix.go-version}}

.github/workflows/two-step-pr-approval.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
18+
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f # v4.0.0
1919

2020
- name: Two stage PR review
2121
uses: hashicorp/[email protected]

0 commit comments

Comments
 (0)