From c6a27145537fb26973d11a2f115b6c4aa1e74ad4 Mon Sep 17 00:00:00 2001 From: Tobias Davis Date: Sun, 16 Jun 2024 22:42:06 -0500 Subject: [PATCH] change: update the github workflow dependencies --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6503162..9e2c43f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,9 +18,9 @@ jobs: matrix: node-version: [ 16.x, 18.x, 20.x ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci