Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
- run: npm install
- run: npm run all
- name: Verify no unstage changes
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
update-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
token: ${{ secrets.FORESIGHT_GITHUB_TOKEN }}
- name: Configure Git User
run: |
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
- name: Use Node.js 16.x
uses: actions/setup-node@v4
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: "20"
node-version: "24"
registry-url: https://registry.npmjs.org
- run: npm version ${{ github.event.inputs.version_scale }}
- run: |
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
needs: [update-version]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
# ref is required
# see:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ inputs:
required: false

runs:
using: "node20"
using: "node24"
main: dist/main/index.js
post: dist/post/index.js
branding:
Expand Down