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 | |
| 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')
| -rw-r--r-- | .github/workflows/build_website.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/deploy_website.yml | 14 |
2 files changed, 12 insertions, 12 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 diff --git a/.github/workflows/deploy_website.yml b/.github/workflows/deploy_website.yml index ca084ef..b0bb438 100644 --- a/.github/workflows/deploy_website.yml +++ b/.github/workflows/deploy_website.yml @@ -30,23 +30,23 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - 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 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: './build' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 |
