diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml index cc87d37708..ed5150207e 100644 --- a/.github/workflows/next.yml +++ b/.github/workflows/next.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/pr-clean-deployments.yml b/.github/workflows/pr-clean-deployments.yml index 813ea316df..8be5717d88 100644 --- a/.github/workflows/pr-clean-deployments.yml +++ b/.github/workflows/pr-clean-deployments.yml @@ -26,7 +26,7 @@ jobs: with: ref: gh-pages - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/pr-storybook.yml b/.github/workflows/pr-storybook.yml index 12b9c0c9a6..8ef602d39a 100644 --- a/.github/workflows/pr-storybook.yml +++ b/.github/workflows/pr-storybook.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' @@ -61,7 +61,9 @@ jobs: target-folder: next/pr/${{ github.event.number }} - name: Comment PR - uses: thollander/actions-comment-pull-request@v1 + uses: thollander/actions-comment-pull-request@v2 with: message: '📖 The updated storybook is available [here](https://mgt.dev/next/pr/${{ github.event.number }})' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + comment_tag: '📖 The updated storybook is available' + mode: recreate diff --git a/.github/workflows/pr-test-app.yml b/.github/workflows/pr-test-app.yml index 0b235b407d..6f67d1636a 100644 --- a/.github/workflows/pr-test-app.yml +++ b/.github/workflows/pr-test-app.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' @@ -54,7 +54,9 @@ jobs: target-folder: next/sample/pr/${{ github.event.number }} - name: Comment PR - uses: thollander/actions-comment-pull-request@v1 + uses: thollander/actions-comment-pull-request@v2 with: message: '🚀 New react-contoso sample application deployed [here](https://mgt.dev/next/sample/pr/${{ github.event.number }})' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + comment_tag: '🚀 New react-contoso sample application deployed' + mode: recreate diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 9b7d1e5b19..33ce078fea 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm install -g lerna diff --git a/.github/workflows/push-preview-release.yml b/.github/workflows/push-preview-release.yml index 9b1ec07371..35d8700ffb 100644 --- a/.github/workflows/push-preview-release.yml +++ b/.github/workflows/push-preview-release.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' @@ -54,7 +54,7 @@ jobs: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/push-release.yml b/.github/workflows/push-release.yml index db38038e9c..cb3e4057fc 100644 --- a/.github/workflows/push-release.yml +++ b/.github/workflows/push-release.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' @@ -53,7 +53,7 @@ jobs: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' @@ -92,7 +92,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 6ee30e6401..a9f69511b3 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/run-release-please.yml b/.github/workflows/run-release-please.yml index 6fdfb9838a..d980901bfa 100644 --- a/.github/workflows/run-release-please.yml +++ b/.github/workflows/run-release-please.yml @@ -14,15 +14,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Use Node.js 20.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20.x registry-url: 'https://registry.npmjs.org' - - uses: google-github-actions/release-please-action@v3 + - uses: googleapis/release-please-action@v4 id: release with: config-file: release-please-config.json manifest-file: .release-please-manifest.json - command: manifest token: ${{secrets.RELEASE_PLEASE_TOKEN}} - default-branch: main