Skip to content

Commit da73251

Browse files
build(deps): Bump the actions group across 1 directory with 7 updates
Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml](https://github.com/google/osv-scanner-action) | `2.0.1` | `2.3.8` | | [crate-ci/typos](https://github.com/crate-ci/typos) | `1.30.0` | `1.46.2` | 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 `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) 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 `google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml` from 2.0.1 to 2.3.8 - [Release notes](https://github.com/google/osv-scanner-action/releases) - [Commits](google/osv-scanner-action@v2.0.1...v2.3.8) Updates `crate-ci/typos` from 1.30.0 to 1.46.2 - [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.2) --- 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: github/codeql-action dependency-version: '4' 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: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml dependency-version: 2.3.8 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: crate-ci/typos dependency-version: 1.46.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c41da96 commit da73251

7 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ jobs:
1010
build-and-test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414

1515
- name: Checkout proto sibling (replace ../proto)
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020
path: _proto_ci
2121
- run: mv _proto_ci ../proto
2222

23-
- uses: actions/setup-go@v5
23+
- uses: actions/setup-go@v6
2424
with:
2525
go-version: '1.24'
2626

.github/workflows/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@ jobs:
2020
timeout-minutes: 30
2121
steps:
2222
- name: Checkout this repo
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
path: common
2626
- name: Checkout sibling InstaNode-dev/proto
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
repository: InstaNode-dev/proto
3030
path: proto
31-
- uses: actions/setup-go@v5
31+
- uses: actions/setup-go@v6
3232
with:
3333
go-version-file: common/go.mod
34-
- uses: github/codeql-action/init@v3
34+
- uses: github/codeql-action/init@v4
3535
with:
3636
languages: go
3737
queries: security-extended
3838
- name: Build
3939
working-directory: common
4040
run: go build ./...
41-
- uses: github/codeql-action/analyze@v3
41+
- uses: github/codeql-action/analyze@v4
4242
with:
4343
category: "/language:go"

.github/workflows/coverage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ 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: common
2020
# Full history so diff-cover can resolve origin/<base_ref> for the
2121
# patch-coverage gate below (shallow clones lack the base commit).
2222
fetch-depth: 0
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
with:
2525
repository: InstaNode-dev/proto
2626
path: proto
2727
continue-on-error: true
28-
- uses: actions/setup-go@v5
28+
- uses: actions/setup-go@v6
2929
with:
3030
go-version-file: common/go.mod
3131
- name: Generate coverage
3232
working-directory: common
3333
run: go test ./... -short -coverprofile=coverage.out -covermode=atomic
34-
- uses: codecov/codecov-action@v4
34+
- uses: codecov/codecov-action@v6
3535
if: always()
3636
with:
3737
files: common/coverage.out
@@ -44,7 +44,7 @@ jobs:
4444
# Tool: diff-cover (https://github.com/Bachmann1234/diff-cover) reads a
4545
# Cobertura report + the git diff vs the base branch.
4646
# ------------------------------------------------------------------
47-
- uses: actions/setup-python@v5
47+
- uses: actions/setup-python@v6
4848
if: github.event_name == 'pull_request'
4949
with:
5050
python-version: '3.12'

.github/workflows/govulncheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
timeout-minutes: 15
1818
steps:
1919
- name: Checkout this repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
path: common
2323
- name: Checkout sibling InstaNode-dev/proto
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
repository: InstaNode-dev/proto
2727
path: proto
28-
- uses: actions/setup-go@v5
28+
- uses: actions/setup-go@v6
2929
with:
3030
go-version-file: common/go.mod
3131
check-latest: true

.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/osv-scanner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
scan:
18-
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.0.1
18+
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.3.8
1919
permissions:
2020
actions: read
2121
contents: read

.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.2
1919
continue-on-error: true # warn-only — surface findings without blocking CI

0 commit comments

Comments
 (0)