diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2aef0bf..9aa4013 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node_version: [18.x] + node_version: ['24.x'] # https://stackoverflow.com/questions/61070925/github-actions-disable-auto-cancel-when-job-fails fail-fast: false diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c88cef..b54077a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,10 @@ on: tags: - "v*.*.*" +permissions: + id-token: write + contents: write + jobs: release: runs-on: ubuntu-latest @@ -12,7 +16,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v3 with: - node-version: lts/* + node-version: '24.x' - name: Install dependencies run: npm install