Skip to content

Commit

Permalink
Update GitHub Actions which were using Node.js 16
Browse files Browse the repository at this point in the history
  • Loading branch information
morganwillcock committed Mar 17, 2024
1 parent a543274 commit 6aee87e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
MSYS: winsymlinks:nativestrict
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup msys2
Expand Down Expand Up @@ -114,20 +114,20 @@ jobs:
make -j $(($(getconf _NPROCESSORS_ONLN) - 1)) DESTDIR=destdir install
- name: Upload release archive
if: ${{ matrix.with-feature != null }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release_${{ runner.os }}_${{ env.PANDOC_VERSION }}
path: build/ags-manual-*.tar.gz
if-no-files-found: error
- name: Upload website
if: ${{ matrix.with-feature != null }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: website_${{ runner.os }}_${{ env.PANDOC_VERSION }}
path: build/destdir/usr/local/share/ags-manual/website
if-no-files-found: error
- name: Upload CHM file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: chm_${{ runner.os }}_${{ env.PANDOC_VERSION }}${{ matrix.with-feature }}
path: build/destdir/usr/local/share/ags-manual/*.chm
Expand All @@ -137,7 +137,7 @@ jobs:
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup tangling
run: >
cd /tmp &&
Expand All @@ -152,7 +152,7 @@ jobs:
dram words=diff-dirs '${{ github.workspace }}/CONTRIBUTING.md' > diff-dirs
chmod +x diff-dirs
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Compare website artifacts
Expand Down

0 comments on commit 6aee87e

Please sign in to comment.