Skip to content

Commit 4cd4678

Browse files
chore(deps): Bump the actions group with 6 updates (#16)
Bumps the actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `8` | `9` | | [crate-ci/typos](https://github.com/crate-ci/typos) | `1.30.0` | `1.46.3` | 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/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `codecov/codecov-action` from 4 to 6 - [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...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) Updates `crate-ci/typos` from 1.30.0 to 1.46.3 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.30.0...v1.46.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: crate-ci/typos dependency-version: 1.46.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f396d0e commit 4cd4678

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,28 @@ jobs:
1414
runs-on: ubuntu-latest
1515
timeout-minutes: 10
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
with:
1919
path: cli
2020
# Full history so diff-cover can resolve origin/<base_ref>.
2121
fetch-depth: 0
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
with:
2424
repository: InstaNode-dev/common
2525
path: common
2626
continue-on-error: true
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828
with:
2929
repository: InstaNode-dev/proto
3030
path: proto
3131
continue-on-error: true
32-
- uses: actions/setup-go@v5
32+
- uses: actions/setup-go@v6
3333
with:
3434
go-version-file: cli/go.mod
3535
- name: Generate coverage
3636
working-directory: cli
3737
run: go test ./... -short -coverprofile=coverage.out -covermode=atomic
38-
- uses: codecov/codecov-action@v4
38+
- uses: codecov/codecov-action@v6
3939
if: always()
4040
with:
4141
files: cli/coverage.out
@@ -47,7 +47,7 @@ jobs:
4747
# covered by a test (100%), and the project floor stays >=95%.
4848
# Tool: diff-cover (https://github.com/Bachmann1234/diff-cover).
4949
# ------------------------------------------------------------------
50-
- uses: actions/setup-python@v5
50+
- uses: actions/setup-python@v6
5151
if: github.event_name == 'pull_request'
5252
with:
5353
python-version: '3.12'

.github/workflows/golangci-lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,26 @@ jobs:
1818
runs-on: ubuntu-latest
1919
timeout-minutes: 10
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
with:
2323
path: cli
2424
# Sibling checkouts (proto/common) for repos with replace directives.
2525
# No-op for repos that do not need them.
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727
if: ${{ hashFiles('cli/go.mod') != '' }}
2828
with:
2929
repository: InstaNode-dev/common
3030
path: common
3131
continue-on-error: true
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333
with:
3434
repository: InstaNode-dev/proto
3535
path: proto
3636
continue-on-error: true
37-
- uses: actions/setup-go@v5
37+
- uses: actions/setup-go@v6
3838
with:
3939
go-version-file: cli/go.mod
40-
- uses: golangci/golangci-lint-action@v8
40+
- uses: golangci/golangci-lint-action@v9
4141
with:
4242
version: latest
4343
working-directory: cli

.github/workflows/lychee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 5
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
- uses: lycheeverse/lychee-action@v2
2222
with:
2323
args: --no-progress --max-concurrency 4 --exclude-mail './**/*.md' './**/*.html'

.github/workflows/typos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
runs-on: ubuntu-latest
1515
timeout-minutes: 3
1616
steps:
17-
- uses: actions/checkout@v4
18-
- uses: crate-ci/typos@v1.30.0
17+
- uses: actions/checkout@v6
18+
- uses: crate-ci/typos@v1.46.3
1919
continue-on-error: true # warn-only — surface findings without blocking CI

0 commit comments

Comments
 (0)