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

MAINT: Update Node to 20 #13

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install EDM
uses: ./
with:
edm-version: 3.1.1
edm-version: 3.7.0
- name: Show EDM versions
run: edm versions
2 changes: 1 addition & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The steps follow closely [GitHub documentation on creating a JavaScript action](
The requirements are:

- Git
- Node.js (version 16)
- Node.js (version 20)

## Directory structure

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Cache EDM packages
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache
key: ${{ runner.os }}--${{ hashFiles('requirements.txt') }}
- name: Setup EDM
uses: enthought/setup-edm-action@v1
uses: enthought/setup-edm-action@v3
with:
edm-version: 3.1.1
edm-version: 3.7.0
- name: Install Python packages
run: edm install -y typing
```

## Inputs

- `edm-version`: (Required)
A string to specify the EDM version to be installed, e.g. '3.1.1'
A string to specify the EDM version to be installed, e.g. '3.7.0'
- `download-directory`: (Optional)
A string to specify the directory for storing the downloaded installer.
Default to `~/.cache/download`, which is within the default cache folder
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ inputs:
default: ~/.cache/download

runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
Loading