Skip to content

Commit 91975fe

Browse files
author
pixelead0
committed
Update GitHub Actions workflows to use version 4 of upload and download artifact actions
1 parent 07277bf commit 91975fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# Solo para main: guardar el sitio construido
5656
- name: Upload build artifact
5757
if: github.ref == 'refs/heads/main'
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: site
6161
path: site/

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
url: ${{ steps.deployment.outputs.page_url }}
2727
steps:
2828
- name: Download build artifact
29-
uses: actions/download-artifact@v3
29+
uses: actions/download-artifact@v4
3030
with:
3131
name: site
3232
path: site/
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/configure-pages@v4
3838

3939
- name: Upload to GitHub Pages
40-
uses: actions/upload-pages-artifact@v3
40+
uses: actions/upload-pages-artifact@v4
4141
with:
4242
path: site/
4343

0 commit comments

Comments
 (0)