Skip to content

Commit

Permalink
👷 Update upload/download artifacts action to v4
Browse files Browse the repository at this point in the history
Update upload-artifact and download-artifact actions to v4

Replace deprecated v3 with the latest v4 version for both
upload-artifact and download-artifact actions in the CI/CD
workflow. This update ensures the use of the most recent and
supported versions of these GitHub Actions, potentially
benefiting from performance improvements and bug fixes.
  • Loading branch information
hyperb1iss committed Sep 12, 2024
1 parent fb08f74 commit 6d1ee36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Build project
run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: hyper-light-card.js
path: ./target/hyper-light-card.js
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download build artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: hyper-light-card.js
- name: Create release
Expand Down

0 comments on commit 6d1ee36

Please sign in to comment.