Skip to content

Commit 3da5874

Browse files
authored
workaround for github action checkout@v3 (#1063)
see actions/checkout#1590 (comment)
1 parent 9cd148e commit 3da5874

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: CI
22

3+
34
on:
45
schedule:
56
- cron: "40 2 * * *"
@@ -258,6 +259,10 @@ jobs:
258259
if: github.event.pull_request.draft == false
259260
runs-on: ubuntu-latest
260261
container: quay.io/pypa/manylinux2014_x86_64 #use manylinux2014 here, to be changed when actions for this job will be updated. See Issue #939
262+
env:
263+
# workaround required for checkout@v3, https://github.com/actions/checkout/issues/1590
264+
# to be removed when upgrading to v4 in Issue #939
265+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
261266
steps:
262267
- uses: actions/checkout@v3 # use v3 here as v4 produces error with cmake
263268
- uses: ./.github/actions/build-py

0 commit comments

Comments
 (0)