From a3bb0bb1ba6d3bcf8b34ad1c0350fab66dc0adff Mon Sep 17 00:00:00 2001 From: Heath Stewart Date: Thu, 8 Feb 2024 18:23:28 -0800 Subject: [PATCH] Upgrade Nodejs 16 workflow actions --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bca6fb..128d56a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,10 +36,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: npm node-version: ${{ env.NODE_VERSION }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 350bb00..c88cc39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: steps: # Check out with full history to generate release notes. - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -38,7 +38,7 @@ jobs: path: ${{ runner.temp }}/ - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: npm node-version: ${{ needs.test.outputs.node-version }}