From 9908e1ddbacc213df0a8a419a6cfbb1db7f89b1e Mon Sep 17 00:00:00 2001 From: Spencer Comfort <109806759+GiddyGoatGaming@users.noreply.github.com> Date: Mon, 16 Jan 2023 21:50:16 -0500 Subject: [PATCH] Update actions and node in pipeline --- .github/workflows/pipeline.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 2309444579..f1c6671911 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -12,10 +12,10 @@ jobs: lint_flow: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '19' - run: yarn install --frozen-lockfile - run: yarn flow check --show-all-errors @@ -26,10 +26,10 @@ jobs: build_deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '19' - run: yarn install --frozen-lockfile - run: yarn build --env browsers=all @@ -50,10 +50,10 @@ jobs: windows: runs-on: windows-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '19' - run: yarn install --frozen-lockfile - run: yarn test