From ea2fe5316b40186438d86b6a6034a07a33e79399 Mon Sep 17 00:00:00 2001 From: Jake Strawn Date: Thu, 15 Feb 2024 12:48:27 -0500 Subject: [PATCH] feat(actions): Switching to node:lts container image for testing. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32ec1181..4cb02160 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: name: Install & Lint Codebase runs-on: ubuntu-latest container: - image: ubuntu:latest + image: node:lts # The steps for the setup job. steps: # @see https://github.com/marketplace/actions/checkout @@ -78,7 +78,7 @@ jobs: name: Build Outline Codebase runs-on: ubuntu-latest container: - image: ubuntu:latest + image: node:lts needs: ['setup'] # The steps for the setup job. steps: @@ -119,7 +119,7 @@ jobs: if: github.ref == 'refs/heads/next' runs-on: ubuntu-latest container: - image: ubuntu:latest + image: node:lts needs: ['setup', 'build_outline'] # The steps for the setup job.