From 8ddd5203d827fc9e23f913b85f9adf7eb86d2033 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 22:10:40 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- .github/workflows/flake8.yml | 2 +- .github/workflows/pages.yml | 2 +- .github/workflows/unit-tests-pytest.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index eae49087..3401217b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index 4372fd02..017ed30b 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/setup-python@v2 diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index a2ea0bf8..ec38ec44 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -42,7 +42,7 @@ jobs: echo "TMP_DIR=$(mktemp -d)" >> ${GITHUB_ENV} - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # otherwise, you will failed to push refs to dest repo diff --git a/.github/workflows/unit-tests-pytest.yml b/.github/workflows/unit-tests-pytest.yml index d54c0445..92b124fc 100644 --- a/.github/workflows/unit-tests-pytest.yml +++ b/.github/workflows/unit-tests-pytest.yml @@ -18,7 +18,7 @@ jobs: max-parallel: 5 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create Python ${{ matrix.python-version }} environment uses: mamba-org/setup-micromamba@v1