From 2819ba60f89fa62962e70c7d9c48830802737fcd Mon Sep 17 00:00:00 2001 From: Max Geller Date: Fri, 4 Oct 2024 20:27:32 -0700 Subject: [PATCH] chore: Update Node.js version to 20 in main.yaml --- .github/workflows/main.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index c9be778..d601aa5 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -9,13 +9,15 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 20 + registry-url: https://npm.pkg.github.com/ - name: Build Angular app to prod working-directory: angular-starter