diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7caac7..e209cf0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,12 +10,12 @@ jobs: if: "contains(github.event.head_commit.message, 'chore: release')" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 - name: Use Node.js v20 uses: actions/setup-node@v4 @@ -43,7 +43,7 @@ jobs: git config --global core.autocrlf true git config --global core.safecrlf false git add . - git commit -m "CI build" -a + git commit -m "chore: ci build" -a continue-on-error: true - name: Git push diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index c813658..2dcd963 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -13,12 +13,12 @@ jobs: if: "!contains(github.event.head_commit.message, 'chore: release')" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 - name: Use Node.js v20 uses: actions/setup-node@v4 diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index a6c6315..2de49c0 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -9,8 +9,6 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@v3 + - uses: google-github-actions/release-please-action@v4 with: release-type: node - command: manifest - monorepo-tags: true