Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: using a TLS Node.js version to prevent setup-node issues #528

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
steps:

- name: Checkout the code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

- name: Setup Node.js
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v3.8.1
with:
node-version: v19.6.0
node-version: v18.18.0
cache: npm

- name: Cache Node.js packages
id: cache-npm
uses: actions/[email protected].1
uses: actions/[email protected].2
env:
cache-name: cache-node-modules
with:
Expand Down