Skip to content

Commit d696a4c

Browse files
committed
chore: checkout repo before trying to run composite action
1 parent 4176a43 commit d696a4c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/deployment-v2.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ jobs:
6161
Requested reviewers:
6262
- @cowprotocol/frontend
6363
steps:
64+
- name: Checkout workflow repository
65+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
66+
with:
67+
fetch-depth: 0
68+
persist-credentials: false
69+
6470
- name: Setup release sync
6571
id: setup
6672
uses: ./.github/actions/setup-release-sync
@@ -130,6 +136,12 @@ jobs:
130136
needs: collect-release-metadata
131137
runs-on: ubuntu-latest
132138
steps:
139+
- name: Checkout workflow repository
140+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
141+
with:
142+
fetch-depth: 0
143+
persist-credentials: false
144+
133145
- name: Setup release sync
134146
id: setup
135147
uses: ./.github/actions/setup-release-sync
@@ -173,6 +185,11 @@ jobs:
173185
runs-on: ubuntu-latest
174186
environment: production # Env configured in GitHub UI. Requires manual approval before this job can run
175187
steps:
188+
- name: Checkout workflow repository
189+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
190+
with:
191+
fetch-depth: 0
192+
persist-credentials: false
176193
- name: Setup release sync
177194
id: setup
178195
uses: ./.github/actions/setup-release-sync

0 commit comments

Comments
 (0)