From 02f38725fd22b678cfe3f62c4861fcb75ce9c8d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 11:32:09 +0000 Subject: [PATCH] ci(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-publish-test-repo.yml | 6 +++--- .github/workflows/ci-publish.yml | 6 +++--- .github/workflows/ci-tests.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-publish-test-repo.yml b/.github/workflows/ci-publish-test-repo.yml index 0298499..ad11e55 100644 --- a/.github/workflows/ci-publish-test-repo.yml +++ b/.github/workflows/ci-publish-test-repo.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -52,7 +52,7 @@ jobs: python-version: '3.9' - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -89,7 +89,7 @@ jobs: # Retrieve the code and GIT history so that poetry-dynamic-versioning knows which version to upload - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/ci-publish.yml b/.github/workflows/ci-publish.yml index f5cc57d..197b9bd 100644 --- a/.github/workflows/ci-publish.yml +++ b/.github/workflows/ci-publish.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -54,7 +54,7 @@ jobs: python-version: '3.9' - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -91,7 +91,7 @@ jobs: # Retrieve the code and GIT history so that poetry-dynamic-versioning knows which version to upload - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index f6cd78c..3b75f55 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies uses: ./.github/actions/prepare-poetry @@ -57,7 +57,7 @@ jobs: python-version: ["3.9", "3.10"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies uses: ./.github/actions/prepare-poetry diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f66d4b4..8cc8144 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL