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
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 }}
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 }}
0 commit comments