Skip to content

Commit 0141fbf

Browse files
chore(deps): bump the github-actions group with 6 updates
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-go](https://github.com/actions/setup-go) | `4` | `5` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `3` | `5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `4` | | [labd/changie-release-action](https://github.com/labd/changie-release-action) | `0.3.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 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/setup-go` from 4 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v4...v5) Updates `golangci/golangci-lint-action` from 3 to 5 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v3...v5) 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.3.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.3.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: 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-patch 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 7a67d81 commit 0141fbf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ jobs:
77
test:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111

1212
- name: Set up Go 1.20
13-
uses: actions/setup-go@v4
13+
uses: actions/setup-go@v5
1414
with:
1515
go-version: "1.20"
1616

1717
- name: golangci-lint
1818
continue-on-error: true
19-
uses: golangci/golangci-lint-action@v3
19+
uses: golangci/golangci-lint-action@v5
2020
with:
2121
args: --issues-exit-code=0 --timeout=5m
2222

2323
- name: Run tests
2424
run: go test -race -coverprofile=coverage.out -covermode=atomic -coverpkg=./... -v ./...
2525

2626
- name: Upload to codecov
27-
uses: codecov/codecov-action@v3
27+
uses: codecov/codecov-action@v4
2828
with:
2929
verbose: true
3030

@@ -37,12 +37,12 @@ jobs:
3737
pull-requests: write
3838
actions: write
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
with:
4242
fetch-depth: 0
4343

4444
- name: Prepare release
45-
uses: labd/[email protected].0
45+
uses: labd/[email protected].1
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
4848

.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)