We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d124dc commit 79d2ebfCopy full SHA for 79d2ebf
.github/workflows/build-and-upload.yml
@@ -72,7 +72,12 @@ jobs:
72
if: github.event_name != 'release' && matrix.os == 'windows-latest'
73
run: ("DEV_BUILD=" + (get-content devN.txt)) >> $env:GITHUB_ENV # for setup.py
74
75
+ # downgraded to @v3 if using container: https://github.com/actions/checkout/issues/1487
76
+ - uses: actions/checkout@v3
77
+ if: matrix.container != ''
78
+
79
- uses: actions/checkout@v4
80
+ if: matrix.container == ''
81
82
- name: Mark workspace safe for git
83
# needed for container and self-hosted runners; see https://github.com/actions/checkout/issues/766
0 commit comments