diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2024-07-13 14:26:08 +0200 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-07-25 17:52:56 -0400 |
commit | d52697036746d66f4a3553a56d9bc1ef68138e2f (patch) | |
tree | 3aa7a27d89569e1a887957a8724ec74f18ce4506 | |
parent | f2a7377a5d840b880a4e48a129f31344232930eb (diff) | |
download | meson-1.5.zip meson-1.5.tar.gz meson-1.5.tar.bz2 |
tests: try to fix ubuntu bionic tests1.5
by forcing an older nodejs
(cherry picked from commit 9cc94a16ab837e85c47a818668b98a110fbabc48)
-rw-r--r-- | .github/workflows/os_comp.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/os_comp.yml b/.github/workflows/os_comp.yml index 1d77984..4fa4a87 100644 --- a/.github/workflows/os_comp.yml +++ b/.github/workflows/os_comp.yml @@ -26,6 +26,12 @@ on: - ".github/workflows/os_comp.yml" - "run*tests.py" +# make GHA actions use node16 which still works with bionic +# See https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ +# Unclear how long this will work though +env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + permissions: contents: read |