diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 364cd45..2022d56 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies (ubuntu only) if: matrix.os == 'ubuntu-latest' @@ -66,9 +66,9 @@ jobs: version: 8 - name: Sync node version and setup cache - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: 'pnpm' - name: Install app dependencies and build web diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c700524..db011c6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies (ubuntu only) if: matrix.os == 'ubuntu-latest' @@ -50,9 +50,9 @@ jobs: version: 8 - name: Sync node version and setup cache - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: 'pnpm' - name: Install app dependencies and build web