From f517a381bbe48438aeae5b32d4aa83b72723e7f2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 12:19:49 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/nodejs.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 5ddefd0..489a6f9 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -14,7 +14,7 @@ jobs: node-version: [14, 16, 18] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} @@ -33,7 +33,7 @@ jobs: needs: dependencies steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 18 @@ -56,7 +56,7 @@ jobs: node-version: [14, 16, 18] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: @@ -85,7 +85,7 @@ jobs: node-version: [14, 16, 18] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f33e4b7..74412f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: needs: [build, lint, test] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Node setup uses: actions/setup-node@v3 with: -- 2.45.2