Skip to content

Commit ac64742

Browse files
committed
Explicit checkout
1 parent 1bf0a2c commit ac64742

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/actions/generate-datasheets/action.yml

-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ inputs:
1212
runs:
1313
using: composite
1414
steps:
15-
- uses: actions/checkout@v4
16-
with:
17-
fetch-depth: 1
18-
1915
- uses: actions/cache@v4
2016
id: cache
2117
with:

.github/workflows/deploy-production.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ jobs:
2222
name: Render Datasheets
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: ./.github/actions/generated-datasheets
25+
26+
- uses: actions/checkout@v4
27+
with:
28+
fetch-depth: 1
29+
30+
- uses: ./.github/actions/generate-datasheets
2631
with:
2732
artifact-name: datasheets
2833
datasheets-path: static/resources/datasheets

.github/workflows/deploy-staging.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ jobs:
2222
name: Render Datasheets
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: ./.github/actions/generated-datasheets
25+
26+
- uses: actions/checkout@v4
27+
with:
28+
fetch-depth: 1
29+
30+
- uses: ./.github/actions/generate-datasheets
2631
with:
2732
artifact-name: datasheets
2833
datasheets-path: static/resources/datasheets

0 commit comments

Comments
 (0)