diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 030e8b8..da49dcb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,13 +6,13 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: - node-version: 20 - - uses: actions/checkout@v4 + node-version: 24 + - uses: actions/checkout@v6 with: ref: dist path: dist @@ -33,6 +33,6 @@ jobs: git config user.email github-actions@github.com git add . --force git commit --allow-empty -m "Update $GITHUB_SHA" - git tag -f -a -m "Update $GITHUB_SHA" v2 + git tag -f -a -m "Update $GITHUB_SHA" v3 git push git push --tags -f diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 94f0ffd..207907e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,12 +3,12 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 - run: | npm install npm run all diff --git a/.nvmrc b/.nvmrc index 209e3ef..a45fd52 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20 +24 diff --git a/action.yml b/action.yml index 0c7ae86..4f18ca6 100644 --- a/action.yml +++ b/action.yml @@ -25,5 +25,5 @@ outputs: changelog: description: "The generated changelog" runs: - using: node20 + using: node24 main: index.js