Skip to content

Commit 1b394ba

Browse files
ci(github-actions): bump the dependencies group across 1 directory with 5 updates
Bumps the dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `6.0.1` | `9.2.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `5` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `golangci/golangci-lint-action` from 6.0.1 to 9.2.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v6.0.1...v9.2.0) Updates `codecov/codecov-action` from 4 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: golangci/golangci-lint-action dependency-version: 9.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a80e510 commit 1b394ba

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/go-lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
name: Run golangci-lint
4747
runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v6
5050
- name: DEBUG
5151
shell: bash
5252
run: |
@@ -61,7 +61,7 @@ jobs:
6161
================================================================
6262
DEBUG_DOC
6363
- name: actions/cache for versenv
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: |
6767
~/.cache/versenv
@@ -85,7 +85,7 @@ jobs:
8585
# Setup versenv
8686
direnv allow ${{ env.WORKDIR }}
8787
make versenv
88-
- uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage
88+
- uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage
8989
id: setup-go
9090
with:
9191
cache: false
@@ -97,7 +97,7 @@ jobs:
9797
echo "GOVERSION=$(go version | cut -d' ' -f3)" >> "$GITHUB_OUTPUT"
9898
echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
9999
- name: actions/cache for go
100-
uses: actions/cache@v4
100+
uses: actions/cache@v5
101101
with:
102102
path: |
103103
~/go/pkg/mod
@@ -119,7 +119,7 @@ jobs:
119119
if [ -n "${GITHUB_TOKEN-}" ]; then
120120
direnv exec . bash -Eeux -o pipefail -c 'echo "${GOPRIVATE:-}${GOPRIVATE+,}" | while read -d , -r LINE; do echo "set git config: ${LINE}"; git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@${LINE}".insteadOf "https://${LINE}"; done'
121121
fi
122-
- uses: golangci/golangci-lint-action@v6.0.1 # ref. https://github.com/golangci/golangci-lint-action#how-to-use
122+
- uses: golangci/golangci-lint-action@v9.2.0 # ref. https://github.com/golangci/golangci-lint-action#how-to-use
123123
with:
124124
working-directory: ${{ env.WORKDIR }}
125125
args: --timeout=600s

.github/workflows/go-mod-tidy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
contents: write
4141
runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v6
4444
with:
4545
ref: ${{ github.event.pull_request.head.ref }} # needed for gh pr view
4646
- name: DEBUG
@@ -57,7 +57,7 @@ jobs:
5757
================================================================
5858
DEBUG_DOC
5959
- name: actions/cache for versenv
60-
uses: actions/cache@v4
60+
uses: actions/cache@v5
6161
with:
6262
path: |
6363
~/.cache/versenv
@@ -81,7 +81,7 @@ jobs:
8181
# Setup versenv
8282
direnv allow ${{ env.WORKDIR }}
8383
make versenv
84-
- uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage
84+
- uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage
8585
id: setup-go
8686
with:
8787
cache: false
@@ -93,7 +93,7 @@ jobs:
9393
echo "GOVERSION=$(go version | cut -d' ' -f3)" >> "$GITHUB_OUTPUT"
9494
echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
9595
- name: actions/cache for go
96-
uses: actions/cache@v4
96+
uses: actions/cache@v5
9797
with:
9898
path: |
9999
~/go/pkg/mod

.github/workflows/go-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
name: Run go test
4747
runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v6
5050
- name: DEBUG
5151
shell: bash
5252
run: |
@@ -61,7 +61,7 @@ jobs:
6161
================================================================
6262
DEBUG_DOC
6363
- name: actions/cache for versenv
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: |
6767
~/.cache/versenv
@@ -83,7 +83,7 @@ jobs:
8383
# Setup versenv
8484
direnv allow ${{ env.WORKDIR }}
8585
make versenv
86-
- uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage
86+
- uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage
8787
id: setup-go
8888
with:
8989
cache: false
@@ -95,7 +95,7 @@ jobs:
9595
echo "GOVERSION=$(go version | cut -d' ' -f3)" >> "$GITHUB_OUTPUT"
9696
echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
9797
- name: actions/cache for go
98-
uses: actions/cache@v4
98+
uses: actions/cache@v5
9999
with:
100100
path: |
101101
~/go/pkg/mod
@@ -127,7 +127,7 @@ jobs:
127127
set -Eeu -o pipefail -x
128128
direnv allow .
129129
direnv exec . make test
130-
- uses: codecov/codecov-action@v4 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action
130+
- uses: codecov/codecov-action@v5 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action
131131
with:
132132
token: ${{ secrets.CODECOV_TOKEN }}
133133
files: ${{ env.WORKDIR }}/coverage.txt

.github/workflows/label-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
checks: read
4646
repository-projects: read
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v6
4949
with:
5050
ref: ${{ github.event.pull_request.head.ref }} # needed for gh pr view
5151
- name: Check labels

0 commit comments

Comments
 (0)