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

chore: use Node 20 #45

Closed
wants to merge 1 commit into from
Closed
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
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
- name: Use Node.js 20
uses: actions/setup-node@v2
with:
node-version: '12'
node-version: '20'
- name: Configure git user & email
run: |
git config user.name Github Actions
Expand Down Expand Up @@ -82,10 +82,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
- name: Use Node.js 20
uses: actions/setup-node@v2
with:
node-version: '12'
node-version: '20'
- name: Get package name
id: pkg_name
uses: notiz-dev/github-action-json-property@release
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
id: build_asset
run: |
mkdir -p build
$(npm bin)/mapeo-settings build -l 'en' -o build/${{ steps.filename.outputs.filename }}
npx mapeo-settings build -l 'en' -o build/${{ steps.filename.outputs.filename }}
- uses: actions/upload-artifact@v2
with:
name: ${{ steps.filename.outputs.filename }}
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
Loading
Loading