Skip to content

Commit

Permalink
Update workflows to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-linaro committed May 20, 2024
1 parent 173b6e5 commit 6dfd1ee
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: self-hosted
steps:
- name: Fetch git repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.6
with:
fetch-depth: 0
path: website
Expand All @@ -28,12 +28,15 @@ jobs:
TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Merge test branch
uses: linaro-its/merge-test-branch@v2.6
uses: linaro-its/merge-test-branch@v2.7
with:
path: website

- name: Build site
run: cd ${{ github.workspace }}/website && /srv/github-action-scripts/build-astro-site.sh
run: |
source ~/.nvm/nvm.sh
nvm use 20
cd ${{ github.workspace }}/website && /srv/github-action-scripts/build-astro-site.sh
env:
TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,18 @@ jobs:
runs-on: self-hosted
steps:
- name: Fetch git repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.6
with:
path: website

- name: Initialise environment
run: cat "$GITHUB_WORKSPACE/website/.github-env-${GITHUB_REF##*/}" >> $GITHUB_ENV

- name: Build site
run: cd ${{ github.workspace }}/website && /srv/github-action-scripts/build-astro-site.sh
run: |
source ~/.nvm/nvm.sh
nvm use 20
cd ${{ github.workspace }}/website && /srv/github-action-scripts/build-astro-site.sh
- name: Check links
run: /srv/github-action-scripts/check-links.sh ${{ github.workspace }}/website/dist
Expand Down

0 comments on commit 6dfd1ee

Please sign in to comment.