From 0983e6a23c429eab397738c87b08b64c901ce082 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 09:55:45 -0400 Subject: [PATCH] chore(deps): bump actions/checkout from 3 to 4 (#154) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/scheduled-jobs.yml | 4 ++-- .github/workflows/style.yml | 2 +- .github/workflows/wheels.yml | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7b0c00..54586be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: timeout-minutes: 90 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # fetch all tags and branches - name: Setup CI diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e508033..708cbd4 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -21,7 +21,7 @@ jobs: language: ['cpp', 'python'] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup CI uses: ./.github/actions/setup-repo - name: Initialize CodeQL diff --git a/.github/workflows/scheduled-jobs.yml b/.github/workflows/scheduled-jobs.yml index 866e222..dfe9fa9 100644 --- a/.github/workflows/scheduled-jobs.yml +++ b/.github/workflows/scheduled-jobs.yml @@ -13,7 +13,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Import bot's GPG key for signing commits @@ -46,7 +46,7 @@ jobs: contents: write needs: [update-submodules] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Import bot's GPG key for signing commits diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 67fdc07..6ce1909 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -25,7 +25,7 @@ jobs: timeout-minutes: 90 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # fetch all tags and branches - name: Setup CI diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index b07ae00..28ecbbd 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -25,7 +25,7 @@ jobs: if: github.repository_owner == 'aarnphm' # Don't run on fork repository steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # fetch all tags and branches submodules: true @@ -68,7 +68,7 @@ jobs: - platform: [musllinux_x86_64, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # fetch all tags and branches - name: Setup CI @@ -124,7 +124,7 @@ jobs: - os: 'windows-latest' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # fetch all tags and branches - name: Setup CI