Skip to content

Commit f182830

Browse files
chore(deps): Bump actions/checkout from 6 to 7 in the actions group
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5955b51 commit f182830

13 files changed

Lines changed: 36 additions & 36 deletions

.github/workflows/auth-contract-compose-pw.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,22 @@ jobs:
4747
timeout-minutes: 12
4848
steps:
4949
- name: Checkout api
50-
uses: actions/checkout@v6
50+
uses: actions/checkout@v7
5151
with:
5252
path: api
5353

5454
# The Dockerfile multi-stage build does `COPY proto/`, `COPY common/`,
5555
# `COPY api/` — so the build context needs all three as siblings.
5656
# Identical pattern to ci.yml / deploy.yml.
5757
- name: Checkout proto sibling (for go.mod replace ../proto)
58-
uses: actions/checkout@v6
58+
uses: actions/checkout@v7
5959
with:
6060
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
6161
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
6262
path: proto
6363

6464
- name: Checkout common sibling (for go.mod replace ../common)
65-
uses: actions/checkout@v6
65+
uses: actions/checkout@v7
6666
with:
6767
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
6868
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
if: github.event_name == 'pull_request'
5151
steps:
52-
- uses: actions/checkout@v6
52+
- uses: actions/checkout@v7
5353
with:
5454
fetch-depth: 0
5555
- name: Fail if PR branch is behind its base branch
@@ -100,10 +100,10 @@ jobs:
100100
# exactly as deploy.yml's proven-green gate does.
101101
TEST_POSTGRES_CUSTOMERS_URL: postgres://postgres:postgres@localhost:5432/instant_customers?sslmode=disable
102102
steps:
103-
- uses: actions/checkout@v6
103+
- uses: actions/checkout@v7
104104

105105
- name: Checkout proto sibling (for go.mod replace ../proto)
106-
uses: actions/checkout@v6
106+
uses: actions/checkout@v7
107107
with:
108108
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
109109
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
@@ -113,7 +113,7 @@ jobs:
113113
run: mv _proto_ci ../proto
114114

115115
- name: Checkout common sibling (for go.mod replace ../common)
116-
uses: actions/checkout@v6
116+
uses: actions/checkout@v7
117117
with:
118118
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
119119
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
@@ -208,10 +208,10 @@ jobs:
208208
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
209209
runs-on: ubuntu-latest
210210
steps:
211-
- uses: actions/checkout@v6
211+
- uses: actions/checkout@v7
212212

213213
- name: Checkout proto sibling
214-
uses: actions/checkout@v6
214+
uses: actions/checkout@v7
215215
with:
216216
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
217217
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
@@ -220,7 +220,7 @@ jobs:
220220
- run: mv _proto_ci ../proto
221221

222222
- name: Checkout common sibling
223-
uses: actions/checkout@v6
223+
uses: actions/checkout@v7
224224
with:
225225
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
226226
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: api
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,22 +93,22 @@ jobs:
9393
# nosql package contributes to coverage too.
9494
TEST_MONGO_URI: mongodb://localhost:27017
9595
steps:
96-
- uses: actions/checkout@v6
96+
- uses: actions/checkout@v7
9797
with:
9898
path: api
9999
# Full history so diff-cover can resolve origin/<base_ref> for the
100100
# patch-coverage gate below (shallow clones lack the base commit).
101101
fetch-depth: 0
102102

103103
- name: Checkout proto sibling (for go.mod replace ../proto)
104-
uses: actions/checkout@v6
104+
uses: actions/checkout@v7
105105
with:
106106
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
107107
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
108108
path: proto
109109

110110
- name: Checkout common sibling (for go.mod 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 }}

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ jobs:
9797
--health-retries 12
9898
steps:
9999
- name: Checkout api (this repo) into ./api
100-
uses: actions/checkout@v6
100+
uses: actions/checkout@v7
101101
with:
102102
path: api
103103

104104
- name: Checkout common sibling into ./common
105-
uses: actions/checkout@v6
105+
uses: actions/checkout@v7
106106
with:
107107
repository: ${{ vars.COMMON_REPO || format('{0}/common', github.repository_owner) }}
108108
# 2026-05-15: GITHUB_TOKEN is scoped to THIS repo only and 404s
@@ -114,7 +114,7 @@ jobs:
114114
path: common
115115

116116
- name: Checkout proto sibling into ./proto
117-
uses: actions/checkout@v6
117+
uses: actions/checkout@v7
118118
with:
119119
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
120120
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: api
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('api/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: api
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/integration-backup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ jobs:
5050
if: ${{ vars.INTEGRATION_BACKUP_ENABLED == 'true' }}
5151
steps:
5252
- name: Check out api
53-
uses: actions/checkout@v6
53+
uses: actions/checkout@v7
5454
with:
5555
path: api
5656
- name: Check out infra (sibling repo with restore-drill.sh)
57-
uses: actions/checkout@v6
57+
uses: actions/checkout@v7
5858
with:
5959
repository: ${{ github.repository_owner }}/infra
6060
path: infra

.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/openapi-breaking.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-latest
6767
steps:
6868
- name: Checkout PR head
69-
uses: actions/checkout@v6
69+
uses: actions/checkout@v7
7070
with:
7171
fetch-depth: 0
7272

0 commit comments

Comments
 (0)