diff options
| author | Brendan F <EpicWolverine@users.noreply.github.com> | 2024-04-30 23:14:30 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-30 23:14:30 -0700 |
| commit | 7fa3567b22aee66cfa7221d23df66da8e6dd0f15 (patch) | |
| tree | 7af18b3e7a1e286f2d70a823c4652bbe437dd269 /.github/workflows/build_website.yml | |
| parent | 4a2a441476113dd4fd59a7951679aad00ed1fd36 (diff) | |
| parent | ab8e8897a6719f77ca46684c81b5b31289f5a8c6 (diff) | |
Merge pull request #14 from EpicWolverine/actions-node-20
Update Actions and Build to Node 20
Diffstat (limited to '.github/workflows/build_website.yml')
| -rw-r--r-- | .github/workflows/build_website.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build_website.yml b/.github/workflows/build_website.yml index 00fcd13..00f6d2d 100644 --- a/.github/workflows/build_website.yml +++ b/.github/workflows/build_website.yml @@ -9,16 +9,16 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - name: Run install - uses: borales/actions-yarn@v4.2.0 + uses: borales/actions-yarn@v5 with: cmd: install # will run `yarn install` command - name: Build production bundle - uses: borales/actions-yarn@v4.2.0 + uses: borales/actions-yarn@v5 with: cmd: build |
