Skip to content

Commit

Permalink
github: bump actions to node20
Browse files Browse the repository at this point in the history
GitHub has started issuing warnings for node16 actions.

Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
  • Loading branch information
lsf37 committed Feb 7, 2024
1 parent f60a709 commit 593f856
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Expand Up @@ -20,19 +20,19 @@ jobs:
name: Site
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: pip3 install -U camkes-deps
- run: sudo apt-get install doxygen
- run: sudo gem install bundler -v 2.4.22
- run: make build JEKYLL_ENV=production
- run: tar -cvf site.tar _site/
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: site
path: site.tar
Expand All @@ -45,13 +45,13 @@ jobs:
name: 'Deploy'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: gh-pages
token: ${{ secrets.GH_TOKEN }}
# for removing files, we need to start fresh; this does not remove dot-files
- run: rm -rf *
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: site
- run: tar -xvf site.tar
Expand Down

0 comments on commit 593f856

Please sign in to comment.