Skip to content

Commit

Permalink
add environment variable for checkout step only
Browse files Browse the repository at this point in the history
  • Loading branch information
SonicGDX committed Oct 16, 2024
1 parent 0774bd6 commit 2b3ef4f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pushaction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ jobs:
echo "LANGUAGE=en_US.UTF-8" >> $GITHUB_ENV
echo "LC_ALL=en_US.UTF-8" >> $GITHUB_ENV
- uses: actions/checkout@v3
env:
# Needed to use Node 16 for the checkout action. Node 20 does not work with glibc 2.17
# See https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
with:
submodules: 'recursive'

Expand Down

0 comments on commit 2b3ef4f

Please sign in to comment.