Skip to content

Commit 182df0d

Browse files
build(deps): Bump the actions group across 1 directory with 2 updates
Bumps the actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [crate-ci/typos](https://github.com/crate-ci/typos). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `crate-ci/typos` from 1.47.2 to 1.48.0 - [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.47.2...v1.48.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: crate-ci/typos dependency-version: 1.48.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 007d1bb commit 182df0d

8 files changed

Lines changed: 33 additions & 33 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 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@v6
39+
- uses: actions/checkout@v7
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@v6
56+
- uses: actions/checkout@v7
5757

5858
- name: Checkout proto sibling (replace ../proto)
59-
uses: actions/checkout@v6
59+
uses: actions/checkout@v7
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@v6
69+
uses: actions/checkout@v7
7070
with:
7171
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
7272
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
@@ -80,7 +80,7 @@ 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@v6
83+
uses: actions/checkout@v7
8484
with:
8585
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
8686
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
@@ -168,26 +168,26 @@ jobs:
168168
TEST_DATABASE_URL: postgres://postgres:postgres@localhost:5432/instant_dev_test?sslmode=disable
169169
TEST_REDIS_URL: redis://localhost:6379/15
170170
steps:
171-
- uses: actions/checkout@v6
171+
- uses: actions/checkout@v7
172172

173173
- name: Checkout proto sibling (replace ../proto)
174-
uses: actions/checkout@v6
174+
uses: actions/checkout@v7
175175
with:
176176
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
177177
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
178178
path: _proto_ci
179179
- run: mv _proto_ci ../proto
180180

181181
- name: Checkout common sibling (replace ../common)
182-
uses: actions/checkout@v6
182+
uses: actions/checkout@v7
183183
with:
184184
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
185185
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
186186
path: _common_ci
187187
- run: mv _common_ci ../common
188188

189189
- name: Checkout api sibling (for migrations + cross-repo tests)
190-
uses: actions/checkout@v6
190+
uses: actions/checkout@v7
191191
with:
192192
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
193193
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
timeout-minutes: 30
2121
steps:
2222
- name: Checkout this repo
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424
with:
2525
path: worker
2626
- name: Checkout sibling InstaNode-dev/common
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@v7
2828
with:
2929
repository: InstaNode-dev/common
3030
path: common
3131
- name: Checkout sibling InstaNode-dev/proto
32-
uses: actions/checkout@v6
32+
uses: actions/checkout@v7
3333
with:
3434
repository: InstaNode-dev/proto
3535
path: proto

.github/workflows/coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,21 +71,21 @@ jobs:
7171
# the drift-detection coverage. Mirrors ci.yml.
7272
INSTANT_API_REPO: ${{ github.workspace }}/../api
7373
steps:
74-
- uses: actions/checkout@v6
74+
- uses: actions/checkout@v7
7575
with:
7676
path: worker
7777
# Full history so diff-cover can resolve origin/<base_ref>.
7878
fetch-depth: 0
7979

8080
- name: Checkout proto sibling (for go.mod replace ../proto)
81-
uses: actions/checkout@v6
81+
uses: actions/checkout@v7
8282
with:
8383
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
8484
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
8585
path: proto
8686

8787
- name: Checkout common sibling (for go.mod replace ../common)
88-
uses: actions/checkout@v6
88+
uses: actions/checkout@v7
8989
with:
9090
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
9191
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
@@ -97,7 +97,7 @@ jobs:
9797
# in CI, leaving cross-repo drift detection to developer machines
9898
# only. INSTANT_API_REPO env (set above) locates this checkout.
9999
- name: Checkout api sibling (for cross-repo registry-iterating tests)
100-
uses: actions/checkout@v6
100+
uses: actions/checkout@v7
101101
with:
102102
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
103103
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}

.github/workflows/deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,26 +97,26 @@ jobs:
9797
TEST_DATABASE_URL: postgres://postgres:postgres@localhost:5432/instant_dev_test?sslmode=disable
9898
TEST_REDIS_URL: redis://localhost:6379/15
9999
steps:
100-
- uses: actions/checkout@v6
100+
- uses: actions/checkout@v7
101101

102102
- name: Checkout proto sibling (replace ../proto)
103-
uses: actions/checkout@v6
103+
uses: actions/checkout@v7
104104
with:
105105
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
106106
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
107107
path: _proto_ci
108108
- run: mv _proto_ci ../proto
109109

110110
- name: Checkout common sibling (replace ../common)
111-
uses: actions/checkout@v6
111+
uses: actions/checkout@v7
112112
with:
113113
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
114114
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
115115
path: _common_ci
116116
- run: mv _common_ci ../common
117117

118118
- name: Checkout api sibling (for migrations + cross-repo tests)
119-
uses: actions/checkout@v6
119+
uses: actions/checkout@v7
120120
with:
121121
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
122122
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
@@ -159,12 +159,12 @@ jobs:
159159
needs: integration
160160
steps:
161161
- name: Checkout worker (this repo) into ./worker
162-
uses: actions/checkout@v6
162+
uses: actions/checkout@v7
163163
with:
164164
path: worker
165165

166166
- name: Checkout common sibling into ./common
167-
uses: actions/checkout@v6
167+
uses: actions/checkout@v7
168168
with:
169169
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
170170
# 2026-05-15: GITHUB_TOKEN is scoped to THIS repo only and 404s
@@ -175,7 +175,7 @@ jobs:
175175
path: common
176176

177177
- name: Checkout proto sibling into ./proto
178-
uses: actions/checkout@v6
178+
uses: actions/checkout@v7
179179
with:
180180
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
181181
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
@@ -188,7 +188,7 @@ jobs:
188188
# detection to developer machines only. INSTANT_API_REPO is set on the
189189
# test step below so findApiRepoRoot() locates the sibling deterministically.
190190
- name: Checkout api sibling into ./api (for cross-repo registry-iterating tests)
191-
uses: actions/checkout@v6
191+
uses: actions/checkout@v7
192192
with:
193193
repository: ${{ vars.API_REPO || format('{0}/api', github.repository_owner) }}
194194
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
runs-on: ubuntu-latest
1919
timeout-minutes: 10
2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v7
2222
with:
2323
path: worker
2424
# Sibling checkouts (proto/common) for repos with replace directives.
2525
# No-op for repos that do not need them.
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727
if: ${{ hashFiles('worker/go.mod') != '' }}
2828
with:
2929
repository: InstaNode-dev/common
3030
path: common
3131
continue-on-error: true
32-
- uses: actions/checkout@v6
32+
- uses: actions/checkout@v7
3333
with:
3434
repository: InstaNode-dev/proto
3535
path: proto

.github/workflows/govulncheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
timeout-minutes: 15
1818
steps:
1919
- name: Checkout this repo
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v7
2121
with:
2222
path: worker
2323
- name: Checkout sibling InstaNode-dev/common
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@v7
2525
with:
2626
repository: InstaNode-dev/common
2727
path: common
2828
- name: Checkout sibling InstaNode-dev/proto
29-
uses: actions/checkout@v6
29+
uses: actions/checkout@v7
3030
with:
3131
repository: InstaNode-dev/proto
3232
path: proto

.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@v6
20+
- uses: actions/checkout@v7
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@v6
18-
- uses: crate-ci/typos@v1.47.2
17+
- uses: actions/checkout@v7
18+
- uses: crate-ci/typos@v1.48.0
1919
continue-on-error: true # warn-only — surface findings without blocking CI

0 commit comments

Comments
 (0)