Skip to content

Commit

Permalink
updated actions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Bullrich committed Apr 30, 2024
1 parent 273056d commit 94e1c2a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
working-directory: client
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4.0.2
uses: actions/setup-node@v4
with:
node-version: 20
- run: yarn install --frozen-lockfile
Expand All @@ -33,7 +33,7 @@ jobs:
PUBLIC_CAPTCHA_KEY: 6LcgFI4nAAAAAATrEMoJ6zBacsx5udc1UhGFXemH
GITHUB_PAGES: "/${{ github.event.repository.name }}"
STATIC: true
- uses: actions/upload-artifact@v4.3.1
- uses: actions/upload-artifact@v4
with:
name: faucet
path: ./client/build
Expand All @@ -48,18 +48,18 @@ jobs:
needs: [build-faucet]
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4
- name: Download page
uses: actions/download-artifact@v4.1.4
uses: actions/download-artifact@v4
with:
name: faucet
path: ./dist
- name: Setup Pages
uses: actions/configure-pages@v4.0.0
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3.0.1
uses: actions/upload-pages-artifact@v3
with:
path: ./dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.5
uses: actions/deploy-pages@v4

0 comments on commit 94e1c2a

Please sign in to comment.