From 5ca384a0f772fa40375895f532a10dc6493e3403 Mon Sep 17 00:00:00 2001 From: Spencer Comfort <109806759+GiddyGoatGaming@users.noreply.github.com> Date: Wed, 18 Jan 2023 22:55:03 -0500 Subject: [PATCH 1/2] Update GitHub actions and node version --- .github/workflows/deploying.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploying.yml b/.github/workflows/deploying.yml index 12e9a87c..00068928 100644 --- a/.github/workflows/deploying.yml +++ b/.github/workflows/deploying.yml @@ -12,12 +12,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Install Yarn packages run: yarn install @@ -26,7 +26,7 @@ jobs: run: npm run build - name: Upload production-ready build files - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: production-files path: ./dist @@ -38,7 +38,7 @@ jobs: steps: - name: Download artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: production-files path: ./dist @@ -62,10 +62,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Download artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: production-files path: ./dist From 9cb182d201f79827b755907ee55d96c4b22d7bb5 Mon Sep 17 00:00:00 2001 From: Spencer Comfort <109806759+GiddyGoatGaming@users.noreply.github.com> Date: Wed, 18 Jan 2023 22:56:25 -0500 Subject: [PATCH 2/2] Update linting_testing.yml --- .github/workflows/linting_testing.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linting_testing.yml b/.github/workflows/linting_testing.yml index cc411b93..24d22635 100644 --- a/.github/workflows/linting_testing.yml +++ b/.github/workflows/linting_testing.yml @@ -15,12 +15,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Install Yarn packages run: yarn install