Skip to content

Commit b5f362e

Browse files
build(deps): Bump the actions group with 7 updates
Bumps the actions group with 7 updates: | 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` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [azure/setup-kubectl](https://github.com/azure/setup-kubectl) | `3` | `5` | | [google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml](https://github.com/google/osv-scanner-action) | `2.0.1` | `2.3.8` | 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 `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `azure/setup-kubectl` from 3 to 5 - [Release notes](https://github.com/azure/setup-kubectl/releases) - [Changelog](https://github.com/Azure/setup-kubectl/blob/main/CHANGELOG.md) - [Commits](Azure/setup-kubectl@v3...v5) 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) --- 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: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: azure/setup-kubectl dependency-version: '5' 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 34ceb67 commit b5f362e

5 files changed

Lines changed: 25 additions & 25 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
if: github.event_name == 'pull_request'
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 0
4242
- name: Fail if PR branch is behind its base branch
@@ -53,10 +53,10 @@ jobs:
5353
build-and-test:
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
5757

5858
- name: Checkout proto sibling (replace ../proto)
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v6
6060
with:
6161
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
6262
# REPO_ACCESS_TOKEN is a fine-grained PAT with read on the private
@@ -66,7 +66,7 @@ jobs:
6666
- run: mv _proto_ci ../proto
6767

6868
- name: Checkout common sibling (replace ../common)
69-
uses: actions/checkout@v4
69+
uses: actions/checkout@v6
7070
with:
7171
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
7272
token: ${{ secrets.REPO_ACCESS_TOKEN }}
@@ -80,15 +80,15 @@ jobs:
8080
# to developer machines only. INSTANT_API_REPO is set on the test step
8181
# below so findApiRepoRoot() locates the sibling deterministically.
8282
- name: Checkout api sibling (for cross-repo registry-iterating tests)
83-
uses: actions/checkout@v4
83+
uses: actions/checkout@v6
8484
with:
8585
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
8686
token: ${{ secrets.REPO_ACCESS_TOKEN }}
8787
path: _api_ci
8888
fetch-depth: 1
8989
- run: mv _api_ci ../api
9090

91-
- uses: actions/setup-go@v5
91+
- uses: actions/setup-go@v6
9292
with:
9393
go-version: '1.24'
9494

.github/workflows/codeql.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,29 @@ 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: worker
2626
- name: Checkout sibling InstaNode-dev/common
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
repository: InstaNode-dev/common
3030
path: common
3131
- name: Checkout sibling InstaNode-dev/proto
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
with:
3434
repository: InstaNode-dev/proto
3535
path: proto
36-
- uses: actions/setup-go@v5
36+
- uses: actions/setup-go@v6
3737
with:
3838
go-version-file: worker/go.mod
39-
- uses: github/codeql-action/init@v3
39+
- uses: github/codeql-action/init@v4
4040
with:
4141
languages: go
4242
queries: security-extended
4343
- name: Build
4444
working-directory: worker
4545
run: go build ./...
46-
- uses: github/codeql-action/analyze@v3
46+
- uses: github/codeql-action/analyze@v4
4747
with:
4848
category: "/language:go"

.github/workflows/deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
runs-on: ubuntu-latest
5959
steps:
6060
- name: Checkout worker (this repo) into ./worker
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v6
6262
with:
6363
path: worker
6464

6565
- name: Checkout common sibling into ./common
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v6
6767
with:
6868
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
6969
# 2026-05-15: GITHUB_TOKEN is scoped to THIS repo only and 404s
@@ -74,7 +74,7 @@ jobs:
7474
path: common
7575

7676
- name: Checkout proto sibling into ./proto
77-
uses: actions/checkout@v4
77+
uses: actions/checkout@v6
7878
with:
7979
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
8080
token: ${{ secrets.REPO_ACCESS_TOKEN }}
@@ -87,7 +87,7 @@ jobs:
8787
# detection to developer machines only. INSTANT_API_REPO is set on the
8888
# test step below so findApiRepoRoot() locates the sibling deterministically.
8989
- name: Checkout api sibling into ./api (for cross-repo registry-iterating tests)
90-
uses: actions/checkout@v4
90+
uses: actions/checkout@v6
9191
with:
9292
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
9393
token: ${{ secrets.REPO_ACCESS_TOKEN }}
@@ -106,7 +106,7 @@ jobs:
106106
echo "Built ${VERSION} (${BUILD_TIME})"
107107
108108
- name: Set up Go (for unit tests + go.mod replace directives)
109-
uses: actions/setup-go@v5
109+
uses: actions/setup-go@v6
110110
with:
111111
go-version: '1.25'
112112

@@ -126,10 +126,10 @@ jobs:
126126
run: go test ./... -short -count=1
127127

128128
- name: Set up Docker Buildx
129-
uses: docker/setup-buildx-action@v3
129+
uses: docker/setup-buildx-action@v4
130130

131131
- name: Log in to GHCR
132-
uses: docker/login-action@v3
132+
uses: docker/login-action@v4
133133
with:
134134
registry: ghcr.io
135135
username: ${{ github.actor }}
@@ -151,7 +151,7 @@ jobs:
151151
.
152152
153153
- name: Set up kubectl
154-
uses: azure/setup-kubectl@v3
154+
uses: azure/setup-kubectl@v5
155155
with:
156156
version: 'latest'
157157

.github/workflows/govulncheck.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ 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: worker
2323
- name: Checkout sibling InstaNode-dev/common
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
repository: InstaNode-dev/common
2727
path: common
2828
- name: Checkout sibling InstaNode-dev/proto
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
repository: InstaNode-dev/proto
3232
path: proto
33-
- uses: actions/setup-go@v5
33+
- uses: actions/setup-go@v6
3434
with:
3535
go-version-file: worker/go.mod
3636
check-latest: true

.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

0 commit comments

Comments
 (0)