From b12123e26405871c0a2545e04e05fc6c9ca0c78c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 20:04:18 +0000 Subject: [PATCH] build(deps): update actions/checkout action to v4 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/actions/unit-tests/action.yml | 2 +- .github/workflows/CI.yml | 8 ++++---- .github/workflows/build-helm-chart.yml | 2 +- .github/workflows/create-release-pr.yml | 4 ++-- .github/workflows/create-release.yml | 4 ++-- .github/workflows/create_release_draft.yml | 4 ++-- .github/workflows/pre-release.yml | 8 ++++---- .github/workflows/release.yml | 8 ++++---- .github/workflows/reviewdog.yml | 2 +- 9 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/actions/unit-tests/action.yml b/.github/actions/unit-tests/action.yml index 1e3e8952..17adb5f8 100644 --- a/.github/actions/unit-tests/action.yml +++ b/.github/actions/unit-tests/action.yml @@ -7,7 +7,7 @@ runs: using: "composite" steps: - name: Check out code. - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Install Go uses: actions/setup-go@v4.0.1 with: diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 13f60639..313cc2f8 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Check out repository - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Unit tests uses: ./.github/actions/unit-tests @@ -51,7 +51,7 @@ jobs: NEXT-VERSION: ${{ steps.verify-next-version.outputs.NEXT-VERSION }} steps: - name: Checkout repo - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Overwrite version variable from prepare_ci_run in case of a release-please-branch id: verify-next-version run: | @@ -80,7 +80,7 @@ jobs: GIT_SHA: ${{ needs.prepare_ci_run.outputs.GIT_SHA }} steps: - name: Checkout Code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Load CI Environment from .ci_env id: load_ci_env @@ -123,7 +123,7 @@ jobs: GIT_SHA: ${{ needs.prepare_ci_run.outputs.GIT_SHA }} steps: - name: Checkout Code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Load CI Environment from .ci_env id: load_ci_env diff --git a/.github/workflows/build-helm-chart.yml b/.github/workflows/build-helm-chart.yml index 5f31581b..dc169ab7 100644 --- a/.github/workflows/build-helm-chart.yml +++ b/.github/workflows/build-helm-chart.yml @@ -37,7 +37,7 @@ jobs: RELEASE_BUILD: ${{ inputs.release }} steps: - name: Checkout Code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 # load Image variable from .ci_env - name: Load CI Environment from .ci_env diff --git a/.github/workflows/create-release-pr.yml b/.github/workflows/create-release-pr.yml index 63f6009c..7b144ebe 100644 --- a/.github/workflows/create-release-pr.yml +++ b/.github/workflows/create-release-pr.yml @@ -31,7 +31,7 @@ jobs: branch: ${{ steps.current_branch.outputs.branch }} steps: - name: Checkout repo - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 token: ${{ secrets.KEPTN_BOT_TOKEN }} @@ -101,7 +101,7 @@ jobs: - name: Checkout repo if: ${{ !needs.release-please.outputs.release_created }} - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 with: ref: release-please--branches--${{ needs.prepare.outputs.branch }}--components--dynatrace-service fetch-depth: 0 diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 017c9844..42b91706 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -19,7 +19,7 @@ jobs: branch: ${{ steps.current_branch.outputs.branch }} steps: - name: Checkout repo - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 token: ${{ secrets.KEPTN_BOT_TOKEN }} @@ -92,7 +92,7 @@ jobs: VERSION: ${{ needs.release-please.outputs.major }}.${{ needs.release-please.outputs.minor }}.${{ needs.release-please.outputs.patch }} steps: - name: Checkout Code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 # load DOCKER_ORGANIZATION & IMAGE variable from .ci_env - name: Load CI Environment from .ci_env diff --git a/.github/workflows/create_release_draft.yml b/.github/workflows/create_release_draft.yml index 7f4acf0e..bf0bbb9f 100644 --- a/.github/workflows/create_release_draft.yml +++ b/.github/workflows/create_release_draft.yml @@ -21,7 +21,7 @@ jobs: BRANCH: ${{ steps.determine_branch.outputs.BRANCH }} steps: - name: Check out code. - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Create downloads folder run: mkdir ~/downloads @@ -71,7 +71,7 @@ jobs: REPO_SLUG: "keptn-contrib/dynatrace-service" steps: - name: Check out code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Debug - Output Branch run: echo $BRANCH diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 15a6b817..39f52fce 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Check out repository - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Unit tests uses: ./.github/actions/unit-tests @@ -52,7 +52,7 @@ jobs: fi - name: Checkout repo - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 token: ${{ secrets.KEPTN_BOT_TOKEN }} @@ -103,7 +103,7 @@ jobs: VERSION: ${{ needs.prepare.outputs.next-version }} steps: - name: Checkout Code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 # load DOCKER_ORGANIZATION & IMAGE variable from .ci_env - name: Load CI Environment from .ci_env @@ -143,7 +143,7 @@ jobs: needs: [prepare, docker_build, build-helm-chart] steps: - name: Checkout repo - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 token: ${{ secrets.KEPTN_BOT_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1c200f11..0cd4075c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Check out repository - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 - name: Unit tests uses: ./.github/actions/unit-tests @@ -60,7 +60,7 @@ jobs: fi - name: Checkout repo - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 token: ${{ secrets.KEPTN_BOT_TOKEN }} @@ -125,7 +125,7 @@ jobs: VERSION: ${{ needs.prepare.outputs.next-version }} steps: - name: Checkout Code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 # load DOCKER_ORGANIZATION & IMAGE variable from .ci_env - name: Load CI Environment from .ci_env @@ -165,7 +165,7 @@ jobs: needs: [prepare, docker_build, build-helm-chart] steps: - name: Checkout repo - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 token: ${{ secrets.KEPTN_BOT_TOKEN }} diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index 0bf0fb90..2769c234 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code. - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 - name: golangci-lint