Skip to content

Commit

Permalink
chore: bump actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Sep 23, 2024
1 parent 44baf84 commit adf0a01
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,16 @@ jobs:
needs:
- build-and-test
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: "22.2.0"
registry-url: "https://registry.npmjs.org"
scope: "@rocket.chat"
- uses: actions/checkout@v2
cache: "yarn"
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/cache@v2
- uses: actions/cache@v3
id: yarn-cache
with:
path: |
Expand Down Expand Up @@ -112,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@v2
- uses: actions/checkout@v3
with:
ref: gh-pages
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: storybooks
path: packages

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: docs
path: .
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,22 @@ jobs:
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: "22.2.0"
- uses: actions/checkout@v2
- uses: actions/cache@v2
cache: "yarn"
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: yarn-cache
with:
path: |
**/node_modules
.yarn/cache
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- uses: rharkor/[email protected]
- name: Turbo Cache
id: turbo-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .turbo
key: turbo-${{ runner.os }}-${{ github.job }}
Expand Down

0 comments on commit adf0a01

Please sign in to comment.