Skip to content

Commit

Permalink
ci: update version for upload-artifact and download-artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
zavoloklom committed Sep 20, 2024
1 parent 028bac9 commit 01c3b30
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: wget -qO - https://coverage.codacy.com/get.sh | bash -s -- report -r ./coverage/cobertura-coverage.xml

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: github.ref == 'refs/heads/main'
with:
name: build-artifacts
Expand All @@ -56,7 +56,7 @@ jobs:
uses: actions/checkout@v3

- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-artifacts
path: ./dist
Expand All @@ -76,7 +76,7 @@ jobs:
run: npx semantic-release

- name: Upload release artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-artifacts
path: |
Expand All @@ -94,9 +94,11 @@ jobs:
uses: actions/checkout@v3

- name: Download release artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release-artifacts
path: ./
overwrite: true

- name: Get build arguments
id: vars
Expand Down

0 comments on commit 01c3b30

Please sign in to comment.