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 1969a3c commit 48a1b82Copy full SHA for 48a1b82
.github/workflows/ci.yml
@@ -47,7 +47,20 @@ jobs:
47
os: macos-latest
48
49
steps:
50
- - uses: actions/checkout@v3
+ - name: Checkout
51
+ uses: actions/checkout@v4
52
+ if: matrix.name != 'gcc-6'
53
+
54
+ - name: Checkout (Ubuntu 18.04)
55
+ if: matrix.name == 'gcc-6'
56
+ # Recent versions of Github's checkout action do not run on older Ubuntu versions because they use a too recent
57
+ # Node.js version. Thus, we have to checkout the code manually.
58
+ run: |
59
+ apt-get update
60
+ apt-get install -y git
61
+ git config --global --add safe.directory '*'
62
+ git clone "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}" .
63
+ git checkout $GITHUB_HEAD_REF
64
65
- name: Setup (macOS)
66
if: matrix.name == 'clang-macOS'
0 commit comments