diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af924349..10a6fc8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,10 +10,10 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' cache: 'yarn' - run: yarn install --frozen-lockfile - run: yarn test @@ -22,10 +22,10 @@ jobs: needs: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' cache: 'yarn' - run: yarn install --frozen-lockfile - run: yarn ci:publish