Skip to content

Commit

Permalink
ci: try newer version of Node
Browse files Browse the repository at this point in the history
I'm doing this to try and get a newer version of Git which Github
Actions seems to want to use.  But the problem is if Node is too
new, the crypto library will break.
  • Loading branch information
mtiller committed Aug 31, 2023
1 parent b851a56 commit 4165291
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
runs-on: ubuntu-latest
needs: generate_results
container:
image: node:12
image: node:14
steps:
- name: Mark checkout directory as safe
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Checkout Repository
uses: actions/checkout@v3
- name: Fetch Submodules
run: git submodule update --init --recursive
with:
submodules: recursive
- name: Download Build Artifacts
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 4165291

Please sign in to comment.