From 5f51c799bedb792874b4836fc675c5d90aee2fce Mon Sep 17 00:00:00 2001 From: James Struga Date: Tue, 11 Feb 2025 11:53:12 -0500 Subject: [PATCH] update workflow actions Signed-off-by: James Struga --- .github/workflows/build_test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 796d527..5d24167 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -125,7 +125,7 @@ jobs: uses: actions/checkout@v2 - name: '[Prep 2] Cache node modules' - uses: actions/cache@v2 + uses: actions/cache@v4 with: # npm cache files are stored in `~/.npm` on Linux/macOS path: | @@ -136,12 +136,12 @@ jobs: restore-keys: | ${{ runner.os }}-build-cache-node-modules- - name: '[Prep 3] Setup Node' - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: - node-version: 16.15.0 + node-version: 20 - name: '[Prep 4] Setup jFrog CLI' - uses: jfrog/setup-jfrog-cli@v2 + uses: jfrog/setup-jfrog-cli@v4 env: JF_ARTIFACTORY_1: ${{ secrets.JF_ARTIFACTORY_TOKEN }}