Skip to content

Commit

Permalink
Merge pull request #751 from sbesson/actions_upgrade
Browse files Browse the repository at this point in the history
GitHub Actions version upgrade
  • Loading branch information
jburel authored Oct 24, 2024
2 parents f4b135b + 9b3c9c3 commit 5c978cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Build static website
Expand All @@ -19,7 +19,7 @@ jobs:
- name: Create website archive
run: tar -zcvf ${{ github.event.repository.name }}.tar.gz -C _site ./
- name: Upload website archive as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}.tar.gz
path: ${{ github.event.repository.name }}.tar.gz
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download website archive
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}.tar.gz
- name: Create checksum
Expand Down

0 comments on commit 5c978cd

Please sign in to comment.