Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit f9e37db

Browse files
chore(deps): bump the all-actions group across 1 directory with 5 updates
Bumps the all-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `cd7d8d697e10461458bc61a30d094dc601a8b017` | `692973e3d937129bcbf40652eb9f2f61becf3332` | | [actions/setup-go](https://github.com/actions/setup-go) | `5.0.0` | `5.0.2` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `5.0.0` | `6.0.0` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `4.0.0` | `6.0.1` | | [hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform) | `3.0.0` | `3.1.1` | Updates `actions/checkout` from cd7d8d697e10461458bc61a30d094dc601a8b017 to 692973e3d937129bcbf40652eb9f2f61becf3332 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@cd7d8d6...692973e) Updates `actions/setup-go` from 5.0.0 to 5.0.2 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@0c52d54...0a12ed9) Updates `goreleaser/goreleaser-action` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](goreleaser/goreleaser-action@7ec5c2b...286f3b1) Updates `golangci/golangci-lint-action` from 4.0.0 to 6.0.1 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@3cfe3a4...a4f60bb) Updates `hashicorp/setup-terraform` from 3.0.0 to 3.1.1 - [Release notes](https://github.com/hashicorp/setup-terraform/releases) - [Changelog](https://github.com/hashicorp/setup-terraform/blob/main/CHANGELOG.md) - [Commits](hashicorp/setup-terraform@a1502cd...651471c) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production dependency-group: all-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: goreleaser/goreleaser-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: hashicorp/setup-terraform dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent eb541b1 commit f9e37db

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
runs-on: ubuntu-latest
1919
environment: production
2020
steps:
21-
- uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017 # v4.1.2
21+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.2
2222
with:
2323
# Allow goreleaser to access older tag information.
2424
fetch-depth: 0
25-
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
25+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2626
with:
2727
go-version-file: 'go.mod'
2828
cache: true
@@ -33,7 +33,7 @@ jobs:
3333
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
3434
passphrase: ${{ secrets.PASSPHRASE }}
3535
- name: Run GoReleaser
36-
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0
36+
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0
3737
with:
3838
args: release --clean
3939
env:

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ jobs:
2424
runs-on: ubuntu-latest
2525
timeout-minutes: 5
2626
steps:
27-
- uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017 # v4.1.2
28-
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
27+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.2
28+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2929
with:
3030
go-version-file: 'go.mod'
3131
cache: true
3232
- run: go mod download
3333
- run: go build -v .
3434
- name: Run linters
35-
uses: golangci/golangci-lint-action@3cfe3a4abbb849e10058ce4af15d205b6da42804 # v4.0.0
35+
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1
3636
with:
3737
version: latest
3838

3939
generate:
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017 # v4.1.2
43-
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
42+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.2
43+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
4444
with:
4545
go-version-file: 'go.mod'
4646
cache: true
@@ -63,12 +63,12 @@ jobs:
6363
terraform:
6464
- '1.4.*'
6565
steps:
66-
- uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017 # v4.1.2
67-
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
66+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.2
67+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
6868
with:
6969
go-version-file: 'go.mod'
7070
cache: true
71-
- uses: hashicorp/setup-terraform@a1502cd9e758c50496cc9ac5308c4843bcd56d36 # v3.0.0
71+
- uses: hashicorp/setup-terraform@651471c36a6092792c552e8b1bef71e592b462d8 # v3.1.1
7272
with:
7373
terraform_version: ${{ matrix.terraform }}
7474
terraform_wrapper: false

0 commit comments

Comments
 (0)