From ee3e31ecf628848ca7b3044bbee5b5f414bbbc51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 07:17:06 +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/ci.yaml | 2 +- .github/workflows/deploy.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 82694cc..7b03a2a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: run: working-directory: . steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Login to Docker container registry uses: docker/login-action@v2.1.0 diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 3edb1e5..305f73a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -28,7 +28,7 @@ jobs: env: IMAGE_VERSION: ${{ format('{0}-{1}', needs.pre_job.outputs.date, github.sha) }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Login to Docker container registry uses: docker/login-action@v2.1.0 @@ -60,7 +60,7 @@ jobs: REPO: ${{ github.repository }} IMAGE_VERSION: ${{ format('{0}-{1}', needs.pre_job.outputs.date, github.sha) }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ format('{0}-k8s-config', github.repository) }} token: ${{ secrets.GITOPS_PAT }}