Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
outputs:
branch-name: ${{ steps.set-branch-name.outputs.branch-name }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: '22.20.0'
cache: 'yarn'
Expand Down Expand Up @@ -61,10 +61,10 @@ jobs:
needs:
- build-and-test
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '22.20.0'
registry-url: 'https://registry.npmjs.org'
Expand All @@ -77,7 +77,7 @@ jobs:
**/node_modules
.yarn/cache
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: build
path: packages
Expand Down Expand Up @@ -113,15 +113,15 @@ jobs:
name: github-pages
url: 'https://rocketchat.github.io/fuselage/fuselage/${{ needs.build-and-test.outputs.branch-name }}'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: gh-pages
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: storybooks
path: packages

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: docs
path: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-pr-closed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: 'Delete Storybook for PR #${{ github.event.number }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: gh-pages
- run: rm -rf "fuselage/${{ github.event.number }}" "layout/${{ github.event.number }}" "onboarding-ui/${{ github.event.number }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-pr-opened.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
pr-number: ${{ steps.set-pr-number.outputs.pr-number }}
steps:
- id: set-pr-number
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
with:
script: |
var artifacts = await github.actions.listWorkflowRunArtifacts({
Expand Down Expand Up @@ -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@v4
- uses: actions/checkout@v5
with:
ref: gh-pages
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: storybooks
path: packages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: '22.20.0'
cache: 'yarn'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: '/language:${{ matrix.language }}'
Loading