Skip to content

Commit

Permalink
chore(.github): address deprecation warnings for CI workflow actions (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kidroca authored Apr 9, 2023
1 parent 6ee0392 commit 4cb4011
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
build_storybooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'npm'
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build storybook for each package
run: npm run build:storybooks
- name: Upload Storybook Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: storybook bundles
path: packages/*/storybook-static/**
Expand All @@ -44,11 +44,11 @@ jobs:
token: PERCY_TOKEN_WEB_COMPONENTS
steps:
- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Download Storybook Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: storybook bundles
# We don't need to install all of our dependencies but percy
Expand Down

0 comments on commit 4cb4011

Please sign in to comment.