From 15c216ba058eaed42806b0b42c98db7aa5c83174 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 11:25:53 +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 | 8 ++++---- .github/workflows/pull-request-done.yml | 6 +++--- .github/workflows/pull-request.yml | 8 ++++---- .github/workflows/release-branch-create.yml | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a98e7f9..742bd75 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v4 @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v4 @@ -110,7 +110,7 @@ jobs: if: always() steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download tests results uses: actions/download-artifact@v2 @@ -157,7 +157,7 @@ jobs: image_tag: ${{ steps.get_tag.outputs.DOCKER_TAG }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Login to GitHub Container Registry uses: docker/login-action@v2 diff --git a/.github/workflows/pull-request-done.yml b/.github/workflows/pull-request-done.yml index 3fe5a4a..3ab0f85 100644 --- a/.github/workflows/pull-request-done.yml +++ b/.github/workflows/pull-request-done.yml @@ -48,7 +48,7 @@ jobs: version: ${{ steps.get_version.outputs.VERSION }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get the version id: get_version @@ -71,7 +71,7 @@ jobs: name: "Generate documentation" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -116,7 +116,7 @@ jobs: image_tag: ${{ steps.get_tag.outputs.DOCKER_TAG }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Login to GitHub Container Registry uses: docker/login-action@v2 diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 105bab1..cc37dbb 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -45,7 +45,7 @@ jobs: name: "Lint" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v4 @@ -75,7 +75,7 @@ jobs: name: "Test" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v4 @@ -115,7 +115,7 @@ jobs: if: ${{ always() && github.actor != 'dependabot[bot]' }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download tests results uses: actions/download-artifact@v2 @@ -161,7 +161,7 @@ jobs: image_tag: ${{ steps.get_tag.outputs.DOCKER_TAG }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Login to GitHub Container Registry uses: docker/login-action@v2 diff --git a/.github/workflows/release-branch-create.yml b/.github/workflows/release-branch-create.yml index 48dab85..69ac6d2 100644 --- a/.github/workflows/release-branch-create.yml +++ b/.github/workflows/release-branch-create.yml @@ -43,7 +43,7 @@ jobs: name: "Create PR" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get the version id: get_version