From 941a5d08b9922cedd6740cd0f39064d2316209b9 Mon Sep 17 00:00:00 2001 From: sinedied Date: Sat, 26 Oct 2024 20:14:44 +0200 Subject: [PATCH] ci: update workflows --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d350125..d42cc42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,14 +12,14 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - node-version: ['10', '>=14'] + node-version: ['18', '>=18'] name: ${{ matrix.platform }} / Node.js v${{ matrix.node-version }} runs-on: ${{ matrix.platform }} steps: - run: git config --global core.autocrlf false # Preserve line endings - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b894e2..5254ddb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,12 +9,12 @@ jobs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: persist-credentials: false - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: 14 + node-version: 18 - run: npm ci env: CI: true