From 843b032d39c07200de4feee43b64d9b1b0a586ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 08:09:47 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3.6.0 to 4.1.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.1.1. - [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/f43a0e5ff2bd294095638e18286ca9a3d1956744...b4ffde65f46336ab88eb53be808477a3936bae11) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-pr-review.yml | 2 +- .github/workflows/docker-ci.yml | 10 +++++----- .github/workflows/docker-publish.yml | 2 +- .github/workflows/python-ci.yml | 4 ++-- .github/workflows/python-publish.yml | 4 ++-- .github/workflows/scorecards.yml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/auto-pr-review.yml b/.github/workflows/auto-pr-review.yml index 065877a..e36f28a 100644 --- a/.github/workflows/auto-pr-review.yml +++ b/.github/workflows/auto-pr-review.yml @@ -43,7 +43,7 @@ jobs: contents: read steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Review license uses: actions/dependency-review-action@f6fff72a3217f580d5afd49a46826795305b63c7 diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index b5770ad..5bfeecd 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Setup docker environment uses: ./.github/actions/docker-setup @@ -45,7 +45,7 @@ jobs: needs: dockerize steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Setup docker environment uses: ./.github/actions/docker-setup @@ -80,7 +80,7 @@ jobs: needs: dockerize steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Setup docker environment uses: ./.github/actions/docker-setup @@ -114,7 +114,7 @@ jobs: security-events: write steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Scan Dockerfile by grype id: grype-files @@ -136,7 +136,7 @@ jobs: security-events: write steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Scan Dockerfile by hadolint uses: hadolint/hadolint-action@f988afea3da57ee48710a9795b6bb677cc901183 diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 4a7d92c..90423d4 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -22,7 +22,7 @@ jobs: needs: release steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install cosign uses: sigstore/cosign-installer@9becc617647dfa20ae7b1151972e9b3a2c338a2b diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 535f801..f6d13a7 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -25,7 +25,7 @@ jobs: os: [ubuntu-latest] steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Setup python environment uses: ./.github/actions/python-setup @@ -81,7 +81,7 @@ jobs: language: ["python"] steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Initialize CodeQL uses: github/codeql-action/init@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 12057f6..f05c078 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -18,7 +18,7 @@ jobs: packages: write steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Create Release id: create_release @@ -75,7 +75,7 @@ jobs: pages: write steps: - name: Checkout repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Setup python environment uses: ./.github/actions/python-setup diff --git a/.github/workflows/scorecards.yml b/.github/workflows/scorecards.yml index 8a69c27..5b4d996 100644 --- a/.github/workflows/scorecards.yml +++ b/.github/workflows/scorecards.yml @@ -20,7 +20,7 @@ jobs: actions: read # Needs for private repositories. steps: - name: Checkout code - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: persist-credentials: false