diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml index 6e142768..747d8214 100644 --- a/.github/workflows/api-docs.yml +++ b/.github/workflows/api-docs.yml @@ -8,14 +8,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Generate API documentation run: npm install && npm run build:docs - name: Deploy to GitHub Pages if: success() - uses: crazy-max/ghaction-github-pages@v2 + uses: crazy-max/ghaction-github-pages@v3 with: target_branch: gh-pages build_dir: docs diff --git a/.github/workflows/nodejs-ci-action.yml b/.github/workflows/nodejs-ci-action.yml index 75c5e461..c6484333 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -16,9 +16,9 @@ jobs: node-version: [14.x, 16.x, 18.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: npm ci @@ -36,9 +36,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js 19.x - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 19.x - run: npm ci diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index af6bfdec..af21b3d5 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -7,7 +7,7 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: GoogleCloudPlatform/release-please-action@v2.4.1 + - uses: GoogleCloudPlatform/release-please-action@v3 with: token: ${{ secrets.GITHUB_TOKEN }} release-type: node