diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f91ffb8c..a823aec0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,6 @@ jobs: ci: uses: shlinkio/github-actions/.github/workflows/web-app-ci.yml@main with: - node-version: 22.x + node-version: 24.x publish-coverage: true install-playwright: true diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 7fe1d391..48dba2be 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -9,14 +9,14 @@ jobs: continue-on-error: true steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} - name: Use node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: 22.10 + node-version: 24.14 - name: Build run: | npm ci && \ diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 789525e5..8e374ca5 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - 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: 22.10 + node-version: 24.14 - name: Generate release assets run: npm ci && VERSION=${GITHUB_REF#refs/tags/v} npm run build:dist - name: Publish release with assets