From f0f577d3680ff950ec63d8f16279e7a0a3c107a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 06:49:50 +0000 Subject: [PATCH] chore(deps): bump the actions-deps group with 9 updates Bumps the actions-deps group with 9 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [actions/setup-node](https://github.com/actions/setup-node) | `3` | `4` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `2` | `4` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `2` | `4` | | [crazy-max/ghaction-github-pages](https://github.com/crazy-max/ghaction-github-pages) | `2` | `4` | | [actions/github-script](https://github.com/actions/github-script) | `3.1.0` | `7.0.1` | | [github/codeql-action](https://github.com/github/codeql-action) | `2` | `3` | | [thehanimo/pr-title-checker](https://github.com/thehanimo/pr-title-checker) | `1.3.4` | `1.4.3` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `actions/upload-artifact` from 2 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v4) Updates `actions/download-artifact` from 2 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v4) Updates `crazy-max/ghaction-github-pages` from 2 to 4 - [Release notes](https://github.com/crazy-max/ghaction-github-pages/releases) - [Commits](https://github.com/crazy-max/ghaction-github-pages/compare/v2...v4) Updates `actions/github-script` from 3.1.0 to 7.0.1 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v3.1.0...v7.0.1) Updates `github/codeql-action` from 2 to 3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2...v3) Updates `thehanimo/pr-title-checker` from 1.3.4 to 1.4.3 - [Release notes](https://github.com/thehanimo/pr-title-checker/releases) - [Commits](https://github.com/thehanimo/pr-title-checker/compare/v1.3.4...v1.4.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: crazy-max/ghaction-github-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: thehanimo/pr-title-checker dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/cd.yml | 26 +++++++++++++------------- .github/workflows/ci-pr-closed.yml | 4 ++-- .github/workflows/ci-pr-opened.yml | 10 +++++----- .github/workflows/ci-pr.yml | 8 ++++---- .github/workflows/codeql.yml | 8 ++++---- .github/workflows/pr-title.yml | 2 +- 6 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 374e0942d1..d1a7614194 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -17,12 +17,12 @@ jobs: outputs: branch-name: ${{ steps.set-branch-name.outputs.branch-name }} steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: '22.2.0' cache: 'yarn' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache with: path: | @@ -33,7 +33,7 @@ jobs: if: steps.yarn-cache.outputs.cache-hit != 'true' - run: yarn run ci - run: yarn run docs - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: storybooks path: | @@ -41,7 +41,7 @@ jobs: packages/onboarding-ui/storybook-static packages/layout/storybook-static - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: docs path: | @@ -50,7 +50,7 @@ jobs: ref='${{ github.ref }}' echo "::set-output name=branch-name::$(echo "${ref:11}")" id: set-branch-name - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: build path: packages/**/dist/* @@ -61,23 +61,23 @@ jobs: needs: - build-and-test steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '22.2.0' registry-url: 'https://registry.npmjs.org' scope: '@rocket.chat' cache: 'yarn' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache with: path: | **/node_modules .yarn/cache key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: build path: packages @@ -116,12 +116,12 @@ jobs: - uses: actions/checkout@v4 with: ref: gh-pages - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: storybooks path: packages - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: docs path: . @@ -131,7 +131,7 @@ jobs: mv -v "packages/onboarding-ui/storybook-static" "onboarding-ui/${{ needs.build-and-test.outputs.branch-name }}" mv -v "packages/layout/storybook-static" "layout/${{ needs.build-and-test.outputs.branch-name }}" rm -rf packages - - uses: crazy-max/ghaction-github-pages@v2 + - uses: crazy-max/ghaction-github-pages@v4 with: target_branch: gh-pages build_dir: . diff --git a/.github/workflows/ci-pr-closed.yml b/.github/workflows/ci-pr-closed.yml index fdd490d85e..fe321944b7 100644 --- a/.github/workflows/ci-pr-closed.yml +++ b/.github/workflows/ci-pr-closed.yml @@ -10,11 +10,11 @@ jobs: name: 'Delete Storybook for PR #${{ github.event.number }}' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: gh-pages - run: rm -rf "fuselage/${{ github.event.number }}" "layout/${{ github.event.number }}" "onboarding-ui/${{ github.event.number }}" - - uses: crazy-max/ghaction-github-pages@v2 + - uses: crazy-max/ghaction-github-pages@v4 with: target_branch: gh-pages build_dir: . diff --git a/.github/workflows/ci-pr-opened.yml b/.github/workflows/ci-pr-opened.yml index a0c1841106..bcacb1914c 100644 --- a/.github/workflows/ci-pr-opened.yml +++ b/.github/workflows/ci-pr-opened.yml @@ -15,7 +15,7 @@ jobs: pr-number: ${{ steps.set-pr-number.outputs.pr-number }} steps: - id: set-pr-number - uses: actions/github-script@v3.1.0 + uses: actions/github-script@v7.0.1 with: script: | var artifacts = await github.actions.listWorkflowRunArtifacts({ @@ -37,7 +37,7 @@ jobs: const prNumber = /^storybooks-(\d+)$/.exec(matchArtifact.name)[1]; console.log(`::set-output name=pr-number::${ prNumber }`); - run: unzip storybooks.zip - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: storybooks path: | @@ -53,10 +53,10 @@ jobs: name: github-pages url: 'https://rocketchat.github.io/fuselage/fuselage/${{ needs.download-artifact.outputs.pr-number }}' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: gh-pages - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4 with: name: storybooks path: packages @@ -66,7 +66,7 @@ jobs: mv -v packages/onboarding-ui/storybook-static "onboarding-ui/${{ needs.download-artifact.outputs.pr-number }}" mv -v packages/layout/storybook-static "layout/${{ needs.download-artifact.outputs.pr-number }}" rm -rf packages - - uses: crazy-max/ghaction-github-pages@v2 + - uses: crazy-max/ghaction-github-pages@v4 with: target_branch: gh-pages build_dir: . diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 2c3c68ffdb..b1f1005169 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -19,12 +19,12 @@ jobs: TURBO_TEAM: ${{ secrets.TURBO_TEAM }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: '22.2.0' cache: 'yarn' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache with: path: | @@ -33,7 +33,7 @@ jobs: key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }} - name: Turbo Cache id: turbo-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .turbo key: turbo-${{ runner.os }}-${{ github.job }} @@ -42,7 +42,7 @@ jobs: - run: yarn if: steps.yarn-cache.outputs.cache-hit != 'true' - run: yarn run ci - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: 'storybooks-${{ github.event.number }}' path: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index d27f46ed3b..9134c3f9f9 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,18 +24,18 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} queries: +security-and-quality - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: '/language:${{ matrix.language }}' diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml index bd437cc13a..06aa8ec78d 100644 --- a/.github/workflows/pr-title.yml +++ b/.github/workflows/pr-title.yml @@ -7,6 +7,6 @@ jobs: check: runs-on: ubuntu-latest steps: - - uses: thehanimo/pr-title-checker@v1.3.4 + - uses: thehanimo/pr-title-checker@v1.4.3 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}