Skip to content

Commit 26ee835

Browse files
CI : Continue using Node16 for actions
Actions are now run on Node20 by default, but this requires glibc >=2.28 so actions no longer run in our CentOS 7 build container. Setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true allows us to continue using Node16 for the near future, but support for this may be removed in October... https://github.blog/changelog/2024-05-17-updated-dates-for-actions-runner-using-node20-instead-of-node16-by-default/
1 parent 4da1340 commit 26ee835

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@ jobs:
8686

8787
container: ${{ matrix.containerImage }}
8888

89+
env:
90+
# GitHub have moved to running actions on Node20, which prevents them from
91+
# running on CentOS 7. The below allows actions to continue running on Node16
92+
# until October.
93+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
94+
8995
steps:
9096

9197
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)