Skip to content

Commit a700897

Browse files
committed
Add missing checkout step
1 parent 163ea33 commit a700897

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ jobs:
177177
- job
178178
if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
179179
steps:
180+
- name: checkout the source code
181+
uses: actions/checkout@v4
182+
with:
183+
fetch-depth: 2
180184
- name: publish toolstate
181185
run: src/ci/publish_toolstate.sh
182186
shell: bash

src/ci/github-actions/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,10 @@ jobs:
286286
if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
287287
<<: *base-outcome-job
288288
steps:
289+
- name: checkout the source code
290+
uses: actions/checkout@v4
291+
with:
292+
fetch-depth: 2
289293
- name: publish toolstate
290294
run: src/ci/publish_toolstate.sh
291295
shell: bash

0 commit comments

Comments
 (0)