From ad545a05cbfcacc2d9800db49d951a3328682af3 Mon Sep 17 00:00:00 2001 From: David Ortner Date: Wed, 21 Feb 2024 23:05:25 +0100 Subject: [PATCH] chore: [#1266] Try to fix the release --- .github/workflows/pull_request.yml | 6 +++--- .github/workflows/release.yml | 20 ++++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 161734f32..5d0cf1af5 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,13 +13,13 @@ jobs: fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-node-modules env: cache-name: cache-node-modules @@ -30,7 +30,7 @@ jobs: key: ${{ runner.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('./packages/*/package-lock.json') }}-${{ hashFiles('./package-lock.json') }} - name: Cache turbo - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-turbo with: path: .turbo diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0447c3f78..3ecd9c53f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,18 +19,18 @@ jobs: if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'master' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: master - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-node-modules env: cache-name: cache-node-modules @@ -59,18 +59,18 @@ jobs: node-version: [20] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: master - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-node-modules env: cache-name: cache-node-modules @@ -81,7 +81,7 @@ jobs: key: ${{ runner.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('./packages/*/package-lock.json') }}-${{ hashFiles('./package-lock.json') }} - name: Cache turbo build setup - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .turbo key: turbo-master-${{ github.sha }} @@ -133,18 +133,18 @@ jobs: node-version: [20] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: master - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-node-modules env: cache-name: cache-node-modules