diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 994f00d0..345375d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,12 +6,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@master + uses: actions/checkout@v3 - name: Set up Node.js - uses: actions/setup-node@master + uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 - name: Install dependencies run: yarn diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8195f68a..f4500c97 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: secrets: gh_token: ${{ secrets.GITHUB_TOKEN }} with: - node_version: 12 + node_version: 18 install: yarn build: yarn build output_dir: docs/public diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml index c17c5457..784a928d 100644 --- a/.github/workflows/deploy_preview.yml +++ b/.github/workflows/deploy_preview.yml @@ -15,7 +15,7 @@ jobs: secrets: gh_token: ${{ secrets.GITHUB_TOKEN }} with: - node_version: 12 + node_version: 18 install: yarn build: yarn build:preview output_dir: docs/public diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a996bf8d..e45c4d46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,9 +19,9 @@ jobs: persist-credentials: false - name: Set up Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 18 - name: Install dependencies run: yarn diff --git a/.github/workflows/release_canary.yml b/.github/workflows/release_canary.yml index 593624f8..0c93e395 100644 --- a/.github/workflows/release_canary.yml +++ b/.github/workflows/release_canary.yml @@ -20,9 +20,9 @@ jobs: fetch-depth: 0 - name: Set up Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 18 - name: Install dependencies run: yarn diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 00000000..3f430af8 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v18