From 484bc1e8a2a6734fcdb926674cd1e94b6c1001a7 Mon Sep 17 00:00:00 2001 From: Nathan Booker Date: Sat, 19 Oct 2024 10:50:10 -0500 Subject: [PATCH] Bump other GH actions to stop using old node --- .github/workflows/pull_request_review.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull_request_review.yml b/.github/workflows/pull_request_review.yml index 54e1906d72..9dd71cc6a8 100644 --- a/.github/workflows/pull_request_review.yml +++ b/.github/workflows/pull_request_review.yml @@ -22,10 +22,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} @@ -38,7 +38,7 @@ jobs: run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: npm cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ matrix.os }}-node-${{ hashFiles('**/package-lock.json') }}