GitHub Actions: Update workflows to fix deprecations

This commit is contained in:
Hugo Locurcio
2025-02-25 03:51:50 +01:00
parent f3ba3c271d
commit 7102ea031d

View File

@@ -19,16 +19,16 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Checkout published data - name: Checkout published data
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
ref: gh-pages ref: gh-pages
path: out path: out
- name: Install Node.js 16.x - name: Install Node.js 16.x
uses: actions/setup-node@v3 uses: actions/setup-node@v4
with: with:
node-version: 16.x node-version: 16.x
cache: 'npm' cache: 'npm'
@@ -64,7 +64,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Archive production artifacts - name: Archive production artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: web-static name: web-static
path: out path: out