diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cb0fee..68800ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '18.x' - uses: actions/cache@v3 with: path: .yarn/cache @@ -22,7 +22,7 @@ jobs: - run: yarn lint - run: yarn format:check - run: yarn test --coverage - - uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 #v3.1.1 + - uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d #v3.1.4 with: file: coverage/lcov.info - run: yarn build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 547eb4c..41f6675 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,10 +11,10 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '18.x' - run: yarn --immutable - name: npm version working-directory: src @@ -37,7 +37,7 @@ jobs: - name: npm logout run: rm ~/.npmrc - run: git push origin master v${{ inputs.version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: gh-pages path: gh-pages diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 35da145..fb6f71c 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -9,17 +9,17 @@ jobs: update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set Node.js version uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '18.x' - run: yarn set version stable - run: yarn install --no-immutable - run: yarn up --caret '**' - run: yarn up -R '**' - name: Create pull request - uses: peter-evans/create-pull-request@b4d51739f96fca8047ad065eccef63442d8e99f7 # v4.2.0 + uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2 with: commit-message: 'chore: Update all dependencies' branch: dependencies