From f3852057d51eb2e27293a7cb7319046448baa7fc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 13:09:55 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/ci.yml | 2 +- .github/workflows/release-create.yml | 2 +- .github/workflows/release-publish.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed57d13..98cba8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: name: CI runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3.6.0 + - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 - name: Setup Node.js uses: actions/setup-node@v3 with: diff --git a/.github/workflows/release-create.yml b/.github/workflows/release-create.yml index ad93d38..c32ac35 100644 --- a/.github/workflows/release-create.yml +++ b/.github/workflows/release-create.yml @@ -58,7 +58,7 @@ jobs: ### BEGIN runner setup - name: Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 with: ref: ${{ env.RELEASE_FROM }} fetch-depth: '0' diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 4a007b5..261cbc8 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -70,12 +70,12 @@ jobs: ### BEGIN runner setup - name: Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 if: ${{ github.event_name == 'push' }} with: fetch-depth: '0' - name: Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 if: ${{ github.event_name == 'workflow_dispatch' }} with: fetch-depth: '0'