From 5776ca88ed004779672d0cdbfcd0522528756c54 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 23:47:32 +0000 Subject: [PATCH] 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/main.yml | 4 ++-- .github/workflows/publish-image.yml | 2 +- .github/workflows/test-pr-image-build.yml | 2 +- .github/workflows/version_bump.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 261e50153..81881cf21 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL @@ -54,7 +54,7 @@ jobs: # in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded python-version: ['3.8', '3.9', '3.10'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Set up Python 3.10 diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index 4decdab1d..3c6485383 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get branch name diff --git a/.github/workflows/test-pr-image-build.yml b/.github/workflows/test-pr-image-build.yml index f6238ff07..5642babfb 100644 --- a/.github/workflows/test-pr-image-build.yml +++ b/.github/workflows/test-pr-image-build.yml @@ -20,7 +20,7 @@ jobs: steps: - - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Docker buildx diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index ef05286be..3cf382ab7 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -26,7 +26,7 @@ jobs: echo "Branch name is ${{ steps.branch-name.outputs.ref_branch }}" echo "Main name is ${{ steps.branch-name.outputs.default_branch }}" echo "TAG=${{ steps.branch-name.outputs.current_branch }}" >> $GITHUB_ENV - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ steps.branch-name.outputs.current_branch }} fetch-depth: 0