From 1c167a167fbf553fb496b206ccdd34d21a8db2b0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 15:18:01 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/centos-fmt-clippy-on-all.yaml | 2 +- .github/workflows/linux-builds-on-master.yaml | 2 +- .github/workflows/linux-builds-on-pr.yaml | 2 +- .github/workflows/linux-builds-on-stable.yaml | 2 +- .github/workflows/macos-builds-on-all.yaml | 2 +- .github/workflows/windows-builds-on-master.yaml | 2 +- .github/workflows/windows-builds-on-pr.yaml | 2 +- .github/workflows/windows-builds-on-stable.yaml | 2 +- ci/actions-templates/centos-fmt-clippy-template.yaml | 2 +- ci/actions-templates/linux-builds-template.yaml | 2 +- ci/actions-templates/macos-builds-template.yaml | 2 +- ci/actions-templates/windows-builds-template.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/centos-fmt-clippy-on-all.yaml b/.github/workflows/centos-fmt-clippy-on-all.yaml index 3980794..4327a25 100644 --- a/.github/workflows/centos-fmt-clippy-on-all.yaml +++ b/.github/workflows/centos-fmt-clippy-on-all.yaml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # v2 defaults to a shallow checkout, but we need at least to the previous tag fetch-depth: 0 diff --git a/.github/workflows/linux-builds-on-master.yaml b/.github/workflows/linux-builds-on-master.yaml index f164f52..412c2ac 100644 --- a/.github/workflows/linux-builds-on-master.yaml +++ b/.github/workflows/linux-builds-on-master.yaml @@ -34,7 +34,7 @@ jobs: #snap_arch: armhf steps: - name: Clone repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # v2 defaults to a shallow checkout, but we need at least to the previous tag fetch-depth: 0 diff --git a/.github/workflows/linux-builds-on-pr.yaml b/.github/workflows/linux-builds-on-pr.yaml index 8882124..57c324d 100644 --- a/.github/workflows/linux-builds-on-pr.yaml +++ b/.github/workflows/linux-builds-on-pr.yaml @@ -29,7 +29,7 @@ jobs: #snap_arch: armhf steps: - name: Clone repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # v2 defaults to a shallow checkout, but we need at least to the previous tag fetch-depth: 0 diff --git a/.github/workflows/linux-builds-on-stable.yaml b/.github/workflows/linux-builds-on-stable.yaml index e21a95a..2bf4ee5 100644 --- a/.github/workflows/linux-builds-on-stable.yaml +++ b/.github/workflows/linux-builds-on-stable.yaml @@ -57,7 +57,7 @@ jobs: #snap_arch: s390x # skip-pr skip-master steps: - name: Clone repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # v2 defaults to a shallow checkout, but we need at least to the previous tag fetch-depth: 0 diff --git a/.github/workflows/macos-builds-on-all.yaml b/.github/workflows/macos-builds-on-all.yaml index f67b169..26545c9 100644 --- a/.github/workflows/macos-builds-on-all.yaml +++ b/.github/workflows/macos-builds-on-all.yaml @@ -23,7 +23,7 @@ jobs: - x86_64-apple-darwin - aarch64-apple-darwin steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # v2 defaults to a shallow checkout, but we need at least to the previous tag fetch-depth: 0 diff --git a/.github/workflows/windows-builds-on-master.yaml b/.github/workflows/windows-builds-on-master.yaml index 42f3181..f0f8c35 100644 --- a/.github/workflows/windows-builds-on-master.yaml +++ b/.github/workflows/windows-builds-on-master.yaml @@ -33,7 +33,7 @@ jobs: - target: aarch64-pc-windows-msvc # skip-pr skip-stable skip_tests: yes # skip-pr skip-stable steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # v2 defaults to a shallow checkout, but we need at least to the previous tag with: fetch-depth: 0 diff --git a/.github/workflows/windows-builds-on-pr.yaml b/.github/workflows/windows-builds-on-pr.yaml index dd3e34e..451b684 100644 --- a/.github/workflows/windows-builds-on-pr.yaml +++ b/.github/workflows/windows-builds-on-pr.yaml @@ -27,7 +27,7 @@ jobs: mingwdir: mingw32 mingw: https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # v2 defaults to a shallow checkout, but we need at least to the previous tag with: fetch-depth: 0 diff --git a/.github/workflows/windows-builds-on-stable.yaml b/.github/workflows/windows-builds-on-stable.yaml index d6a5c38..f9c9ac1 100644 --- a/.github/workflows/windows-builds-on-stable.yaml +++ b/.github/workflows/windows-builds-on-stable.yaml @@ -30,7 +30,7 @@ jobs: mingwdir: mingw32 mingw: https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # v2 defaults to a shallow checkout, but we need at least to the previous tag with: fetch-depth: 0 diff --git a/ci/actions-templates/centos-fmt-clippy-template.yaml b/ci/actions-templates/centos-fmt-clippy-template.yaml index 3980794..4327a25 100644 --- a/ci/actions-templates/centos-fmt-clippy-template.yaml +++ b/ci/actions-templates/centos-fmt-clippy-template.yaml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # v2 defaults to a shallow checkout, but we need at least to the previous tag fetch-depth: 0 diff --git a/ci/actions-templates/linux-builds-template.yaml b/ci/actions-templates/linux-builds-template.yaml index 3c7f0e9..fd96287 100644 --- a/ci/actions-templates/linux-builds-template.yaml +++ b/ci/actions-templates/linux-builds-template.yaml @@ -65,7 +65,7 @@ jobs: #snap_arch: s390x # skip-pr skip-master steps: - name: Clone repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # v2 defaults to a shallow checkout, but we need at least to the previous tag fetch-depth: 0 diff --git a/ci/actions-templates/macos-builds-template.yaml b/ci/actions-templates/macos-builds-template.yaml index c5c4fe4..a4eef9c 100644 --- a/ci/actions-templates/macos-builds-template.yaml +++ b/ci/actions-templates/macos-builds-template.yaml @@ -23,7 +23,7 @@ jobs: - x86_64-apple-darwin - aarch64-apple-darwin steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # v2 defaults to a shallow checkout, but we need at least to the previous tag fetch-depth: 0 diff --git a/ci/actions-templates/windows-builds-template.yaml b/ci/actions-templates/windows-builds-template.yaml index 45ec28a..d5b0605 100644 --- a/ci/actions-templates/windows-builds-template.yaml +++ b/ci/actions-templates/windows-builds-template.yaml @@ -41,7 +41,7 @@ jobs: - target: aarch64-pc-windows-msvc # skip-pr skip-stable skip_tests: yes # skip-pr skip-stable steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # v2 defaults to a shallow checkout, but we need at least to the previous tag with: fetch-depth: 0