diff --git a/.github/workflows/gh-pages-deploy.yml b/.github/workflows/gh-pages-deploy.yml index 17684b33..d57539b8 100644 --- a/.github/workflows/gh-pages-deploy.yml +++ b/.github/workflows/gh-pages-deploy.yml @@ -10,12 +10,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v3 with: persist-credentials: false - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: - node-version: '12' # TODO IDK what version nighttab is built with normally. + node-version: '18' cache: 'npm' - run: | npm install @@ -24,7 +24,7 @@ jobs: npm run build - name: Deploy - uses: JamesIves/github-pages-deploy-action@4.1.3 + uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages folder: dist/web diff --git a/.github/workflows/pull-request-tests.yml b/.github/workflows/pull-request-tests.yml index a4c08871..8886fc30 100644 --- a/.github/workflows/pull-request-tests.yml +++ b/.github/workflows/pull-request-tests.yml @@ -3,15 +3,15 @@ name: Run tests on: [push, pull_request] jobs: - build-and-deploy: + pull-request-tests: runs-on: ubuntu-latest steps: - name: Checkout - - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Dependecies & Test - - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: '12' # TODO IDK what version nighttab is built with normally. + node-version: '18' cache: 'npm' - run: | npm install