Skip to content

Commit

Permalink
GHA: Fix CI on old Ubuntu
Browse files Browse the repository at this point in the history
GitHub actions/checkout@v3 is no longer working and v4 is incompatible
with older Linux versions due to actions/checkout#1590.

Solution taken from
arenadata/gpdb@4b34d83
  • Loading branch information
vslavik committed Jul 13, 2024
1 parent 99e90bd commit 139a1e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: CI

on: [ push, pull_request ]

env:
# workaround required for checkout@v3, https://github.com/actions/checkout/issues/1590
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:
build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 139a1e1

Please sign in to comment.