Skip to content

Commit

Permalink
chore: met à jour les actions dépréciées
Browse files Browse the repository at this point in the history
  • Loading branch information
liliced committed Jan 18, 2025
1 parent be527e9 commit d012352
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }}
ALGOLIA_SEARCH_KEY: ${{secrets.ALGOLIA_SEARCH_KEY}}
ALGOLIA_INDEX_PREFIX: monentreprise-${{needs.deploy-context.outputs.env-name}}-
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: static-site
path: |
Expand All @@ -115,7 +115,7 @@ jobs:
CRISP_WEBSITE_ID: ${{ secrets.CRISP_WEBSITE_ID }}
- name: Build Storybook
run: yarn workspace site build:storybook
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: static-storybook
path: |
Expand All @@ -129,7 +129,7 @@ jobs:
- uses: ./.github/actions/install
- name: Build API
run: yarn workspace api build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: static-api
path: |
Expand All @@ -145,10 +145,10 @@ jobs:
site: ['', 'en']
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: static-site
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: static-storybook
path: dist/dev/storybook
Expand Down Expand Up @@ -179,10 +179,10 @@ jobs:
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && needs.deploy-context.outputs.env-name == 'master'
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: static-site
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: static-storybook
path: dist/dev/storybook
Expand Down

0 comments on commit d012352

Please sign in to comment.