Skip to content

Commit

Permalink
Revert "ci: revert actions version"
Browse files Browse the repository at this point in the history
This reverts commit 7951291.
  • Loading branch information
634750802 committed Sep 14, 2024
1 parent 7951291 commit 9a9daf1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
if: steps.prod-dep-caches.outputs.cache-hit != 'true'

- name: Archive dist artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist-${{ inputs.build-env }}
path: |
Expand All @@ -101,14 +101,14 @@ jobs:
./public
- name: Archive static artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: static-${{ inputs.build-env }}
path: |
.next/static
- name: Archive public artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: public-${{ inputs.build-env }}
path: |
Expand All @@ -127,7 +127,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download dist artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist-${{ inputs.build-env }}

Expand All @@ -150,7 +150,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download static artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: static-${{ inputs.build-env }}
path: .next/static
Expand All @@ -171,7 +171,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download public artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: public-${{ inputs.build-env }}
path: public
Expand Down

0 comments on commit 9a9daf1

Please sign in to comment.