Skip to content

Commit 140b366

Browse files
chore(deps): bump the github-actions group across 1 directory with 8 updates
Bumps the github-actions group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [actions/setup-go](https://github.com/actions/setup-go) | `3` | `5` | | [crazy-max/ghaction-import-gpg](https://github.com/crazy-max/ghaction-import-gpg) | `5` | `6` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `4.2.0` | `5.0.0` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `3` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `4` | | [labd/changie-release-action](https://github.com/labd/changie-release-action) | `0.2.0` | `0.3.1` | | [actions/add-to-project](https://github.com/actions/add-to-project) | `0.5.0` | `1.0.1` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) Updates `actions/setup-go` from 3 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v3...v5) Updates `crazy-max/ghaction-import-gpg` from 5 to 6 - [Release notes](https://github.com/crazy-max/ghaction-import-gpg/releases) - [Commits](crazy-max/ghaction-import-gpg@v5...v6) Updates `goreleaser/goreleaser-action` from 4.2.0 to 5.0.0 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](goreleaser/goreleaser-action@v4.2.0...v5.0.0) Updates `golangci/golangci-lint-action` from 3 to 6 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v3...v6) Updates `codecov/codecov-action` from 3 to 4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v3...v4) Updates `labd/changie-release-action` from 0.2.0 to 0.3.1 - [Release notes](https://github.com/labd/changie-release-action/releases) - [Changelog](https://github.com/labd/changie-release-action/blob/main/CHANGELOG.md) - [Commits](labd/changie-release-action@v0.2.0...v0.3.1) Updates `actions/add-to-project` from 0.5.0 to 1.0.1 - [Release notes](https://github.com/actions/add-to-project/releases) - [Commits](actions/add-to-project@v0.5.0...v1.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: crazy-max/ghaction-import-gpg dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: goreleaser/goreleaser-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: labd/changie-release-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/add-to-project dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 97bf79a commit 140b366

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,25 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Unshallow
2727
run: git fetch --prune --unshallow
2828

29-
- uses: actions/setup-go@v4
29+
- uses: actions/setup-go@v5
3030
with:
3131
go-version-file: "go.mod"
3232
cache: true
3333

3434
- name: Import GPG key
35-
uses: crazy-max/ghaction-import-gpg@v5
35+
uses: crazy-max/ghaction-import-gpg@v6
3636
id: import_gpg
3737
with:
3838
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
3939
passphrase: ${{ secrets.GPG_PASSPHRASE }}
4040

4141
- name: Run GoReleaser
42-
uses: goreleaser/goreleaser-action@v4.2.0
42+
uses: goreleaser/goreleaser-action@v5.0.0
4343
with:
4444
version: latest
4545
args: release --rm-dist

.github/workflows/tests.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
generate:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-go@v3
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-go@v5
1919
with:
2020
go-version-file: 'go.mod'
2121
cache: true
@@ -28,7 +28,7 @@ jobs:
2828
test:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v4
3232

3333
- name: Set up Go
3434
uses: actions/setup-go@v5
@@ -38,15 +38,15 @@ jobs:
3838

3939
- name: golangci-lint
4040
continue-on-error: true
41-
uses: golangci/golangci-lint-action@v3
41+
uses: golangci/golangci-lint-action@v6
4242
with:
4343
args: --issues-exit-code=0 --timeout=5m
4444

4545
- name: Run tests
4646
run: go test -race -coverprofile=coverage.out -covermode=atomic -coverpkg=./... -v ./...
4747

4848
- name: Upload to codecov
49-
uses: codecov/codecov-action@v3
49+
uses: codecov/codecov-action@v4
5050
with:
5151
verbose: true
5252

@@ -59,12 +59,12 @@ jobs:
5959
pull-requests: write
6060
actions: write
6161
steps:
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
with:
6464
fetch-depth: 0
6565

6666
- name: Prepare release
67-
uses: labd/changie-release-action@v0.2.0
67+
uses: labd/changie-release-action@v0.3.1
6868
with:
6969
github-token: ${{ secrets.GITHUB_TOKEN }}
7070
release-workflow: 'release.yaml'

.github/workflows/triage.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
private-key: ${{ secrets.RD_APP_PRIVATE_KEY }}
1919
installation-id: ${{ secrets.RD_APP_INSTALLATION_ID }}
2020
- name: set to project board
21-
uses: actions/add-to-project@v0.5.0
21+
uses: actions/add-to-project@v1.0.1
2222
with:
2323
project-url: https://github.com/orgs/labd/projects/3
2424
github-token: ${{ steps.get-app-token.outputs.app-token }}

0 commit comments

Comments
 (0)