We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cd148e commit 3da5874Copy full SHA for 3da5874
1 file changed
.github/workflows/main.yml
@@ -1,5 +1,6 @@
1
name: CI
2
3
+
4
on:
5
schedule:
6
- cron: "40 2 * * *"
@@ -258,6 +259,10 @@ jobs:
258
259
if: github.event.pull_request.draft == false
260
runs-on: ubuntu-latest
261
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
266
steps:
267
- uses: actions/checkout@v3 # use v3 here as v4 produces error with cmake
268
- uses: ./.github/actions/build-py
0 commit comments