diff --git a/.github/workflows/production-deploy.yml b/.github/workflows/production-deploy.yml index 7828d4c..83f2f1a 100644 --- a/.github/workflows/production-deploy.yml +++ b/.github/workflows/production-deploy.yml @@ -9,16 +9,12 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [20.x, 22.x] - steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 22.x uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: '22.x' cache: 'npm' # Node dependencies clean install diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index 0cdd7c0..d6e1670 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -12,16 +12,12 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [20.x, 22.x] - steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 22.x uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: '22.x' cache: 'npm' - run: npm ci - run: npm run semantic-release