Skip to content

Commit f1539f0

Browse files
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](actions/checkout@v2...v4) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@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](actions/cache@v3...v4) Updates `actions/upload-artifact` from 2 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2...v4) Updates `actions/download-artifact` from 2 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v2...v4) Updates `crazy-max/ghaction-github-pages` from 2 to 4 - [Release notes](https://github.com/crazy-max/ghaction-github-pages/releases) - [Commits](crazy-max/ghaction-github-pages@v2...v4) Updates `actions/github-script` from 3.1.0 to 7.0.1 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@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](github/codeql-action@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](thehanimo/pr-title-checker@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] <support@github.com>
1 parent bf5b78b commit f1539f0

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

.github/workflows/cd.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
outputs:
1818
branch-name: ${{ steps.set-branch-name.outputs.branch-name }}
1919
steps:
20-
- uses: actions/checkout@v3
21-
- uses: actions/setup-node@v3
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-node@v4
2222
with:
2323
node-version: '22.2.0'
2424
cache: 'yarn'
25-
- uses: actions/cache@v3
25+
- uses: actions/cache@v4
2626
id: yarn-cache
2727
with:
2828
path: |
@@ -33,15 +33,15 @@ jobs:
3333
if: steps.yarn-cache.outputs.cache-hit != 'true'
3434
- run: yarn run ci
3535
- run: yarn run docs
36-
- uses: actions/upload-artifact@v3
36+
- uses: actions/upload-artifact@v4
3737
with:
3838
name: storybooks
3939
path: |
4040
packages/fuselage/storybook-static
4141
packages/onboarding-ui/storybook-static
4242
packages/layout/storybook-static
4343
44-
- uses: actions/upload-artifact@v3
44+
- uses: actions/upload-artifact@v4
4545
with:
4646
name: docs
4747
path: |
@@ -50,7 +50,7 @@ jobs:
5050
ref='${{ github.ref }}'
5151
echo "::set-output name=branch-name::$(echo "${ref:11}")"
5252
id: set-branch-name
53-
- uses: actions/upload-artifact@v3
53+
- uses: actions/upload-artifact@v4
5454
with:
5555
name: build
5656
path: packages/**/dist/*
@@ -61,23 +61,23 @@ jobs:
6161
needs:
6262
- build-and-test
6363
steps:
64-
- uses: actions/checkout@v3
64+
- uses: actions/checkout@v4
6565
with:
6666
fetch-depth: 0
67-
- uses: actions/setup-node@v3
67+
- uses: actions/setup-node@v4
6868
with:
6969
node-version: '22.2.0'
7070
registry-url: 'https://registry.npmjs.org'
7171
scope: '@rocket.chat'
7272
cache: 'yarn'
73-
- uses: actions/cache@v3
73+
- uses: actions/cache@v4
7474
id: yarn-cache
7575
with:
7676
path: |
7777
**/node_modules
7878
.yarn/cache
7979
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
80-
- uses: actions/download-artifact@v3
80+
- uses: actions/download-artifact@v4
8181
with:
8282
name: build
8383
path: packages
@@ -116,12 +116,12 @@ jobs:
116116
- uses: actions/checkout@v4
117117
with:
118118
ref: gh-pages
119-
- uses: actions/download-artifact@v3
119+
- uses: actions/download-artifact@v4
120120
with:
121121
name: storybooks
122122
path: packages
123123

124-
- uses: actions/download-artifact@v3
124+
- uses: actions/download-artifact@v4
125125
with:
126126
name: docs
127127
path: .
@@ -131,7 +131,7 @@ jobs:
131131
mv -v "packages/onboarding-ui/storybook-static" "onboarding-ui/${{ needs.build-and-test.outputs.branch-name }}"
132132
mv -v "packages/layout/storybook-static" "layout/${{ needs.build-and-test.outputs.branch-name }}"
133133
rm -rf packages
134-
- uses: crazy-max/ghaction-github-pages@v2
134+
- uses: crazy-max/ghaction-github-pages@v4
135135
with:
136136
target_branch: gh-pages
137137
build_dir: .

.github/workflows/ci-pr-closed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
name: 'Delete Storybook for PR #${{ github.event.number }}'
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
with:
1515
ref: gh-pages
1616
- run: rm -rf "fuselage/${{ github.event.number }}" "layout/${{ github.event.number }}" "onboarding-ui/${{ github.event.number }}"
17-
- uses: crazy-max/ghaction-github-pages@v2
17+
- uses: crazy-max/ghaction-github-pages@v4
1818
with:
1919
target_branch: gh-pages
2020
build_dir: .

.github/workflows/ci-pr-opened.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pr-number: ${{ steps.set-pr-number.outputs.pr-number }}
1616
steps:
1717
- id: set-pr-number
18-
uses: actions/github-script@v3.1.0
18+
uses: actions/github-script@v7.0.1
1919
with:
2020
script: |
2121
var artifacts = await github.actions.listWorkflowRunArtifacts({
@@ -37,7 +37,7 @@ jobs:
3737
const prNumber = /^storybooks-(\d+)$/.exec(matchArtifact.name)[1];
3838
console.log(`::set-output name=pr-number::${ prNumber }`);
3939
- run: unzip storybooks.zip
40-
- uses: actions/upload-artifact@v2
40+
- uses: actions/upload-artifact@v4
4141
with:
4242
name: storybooks
4343
path: |
@@ -53,10 +53,10 @@ jobs:
5353
name: github-pages
5454
url: 'https://rocketchat.github.io/fuselage/fuselage/${{ needs.download-artifact.outputs.pr-number }}'
5555
steps:
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v4
5757
with:
5858
ref: gh-pages
59-
- uses: actions/download-artifact@v2
59+
- uses: actions/download-artifact@v4
6060
with:
6161
name: storybooks
6262
path: packages
@@ -66,7 +66,7 @@ jobs:
6666
mv -v packages/onboarding-ui/storybook-static "onboarding-ui/${{ needs.download-artifact.outputs.pr-number }}"
6767
mv -v packages/layout/storybook-static "layout/${{ needs.download-artifact.outputs.pr-number }}"
6868
rm -rf packages
69-
- uses: crazy-max/ghaction-github-pages@v2
69+
- uses: crazy-max/ghaction-github-pages@v4
7070
with:
7171
target_branch: gh-pages
7272
build_dir: .

.github/workflows/ci-pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: actions/setup-node@v4
2424
with:
2525
node-version: '22.2.0'
2626
cache: 'yarn'
27-
- uses: actions/cache@v3
27+
- uses: actions/cache@v4
2828
id: yarn-cache
2929
with:
3030
path: |
@@ -33,7 +33,7 @@ jobs:
3333
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
3434
- name: Turbo Cache
3535
id: turbo-cache
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: .turbo
3939
key: turbo-${{ runner.os }}-${{ github.job }}
@@ -42,7 +42,7 @@ jobs:
4242
- run: yarn
4343
if: steps.yarn-cache.outputs.cache-hit != 'true'
4444
- run: yarn run ci
45-
- uses: actions/upload-artifact@v3
45+
- uses: actions/upload-artifact@v4
4646
with:
4747
name: 'storybooks-${{ github.event.number }}'
4848
path: |

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v2
30+
uses: github/codeql-action/init@v3
3131
with:
3232
languages: ${{ matrix.language }}
3333
queries: +security-and-quality
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@v2
36+
uses: github/codeql-action/autobuild@v3
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@v2
39+
uses: github/codeql-action/analyze@v3
4040
with:
4141
category: '/language:${{ matrix.language }}'

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jobs:
77
check:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: thehanimo/pr-title-checker@v1.3.4
10+
- uses: thehanimo/pr-title-checker@v1.4.3
1111
with:
1212
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)