Skip to content

Commit

Permalink
github/buildrepo: allow node16
Browse files Browse the repository at this point in the history
Allow node16 when building in Amazon Linux 2 container.

Signed-off-by: Maciek Borzecki <[email protected]>
  • Loading branch information
bboozzoo committed Sep 13, 2024
1 parent 4617f7f commit 5860e59
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/buildrepo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:

runs-on: ubuntu-latest
container: ${{ matrix.target }}
env:
# the steps are executed inside the container, in case of AMZN2, node20
# build provided by github requires newer glibc than present in the
# container, so we must use a workaround, see:
# https://github.com/actions/checkout/issues/1809
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: ${{ matrix.target == 'amazonlinux:2' && 'true' || '' }}
steps:
- name: Install git
run: |
Expand Down

0 comments on commit 5860e59

Please sign in to comment.