From a7b1dc2eae146a393255043c54f69e3082374755 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Sep 2025 07:59:45 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- .github/workflows/shared-build-deploy-container.yml | 12 ++++++------ .../workflows/shared-deploy-container-kubernetes.yml | 8 ++++---- .github/workflows/test-action.yml | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 626cc7f0..4b25247e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,7 +23,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get current or bumped version tag id: bumpVersion diff --git a/.github/workflows/shared-build-deploy-container.yml b/.github/workflows/shared-build-deploy-container.yml index eabf6597..b7b4fe62 100644 --- a/.github/workflows/shared-build-deploy-container.yml +++ b/.github/workflows/shared-build-deploy-container.yml @@ -57,10 +57,10 @@ jobs: tagPrefix: ${{ steps.load-environment.outputs.tagPrefix }} steps: - name: Checkout calling repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-shared-build-deploy-container @@ -100,10 +100,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout calling repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-shared-build-deploy-container @@ -142,10 +142,10 @@ jobs: && github.event.workflow_run.conclusion == 'success' )) steps: - name: Checkout calling repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-shared-build-deploy-container diff --git a/.github/workflows/shared-deploy-container-kubernetes.yml b/.github/workflows/shared-deploy-container-kubernetes.yml index 1caaa38d..0b3e022c 100644 --- a/.github/workflows/shared-deploy-container-kubernetes.yml +++ b/.github/workflows/shared-deploy-container-kubernetes.yml @@ -42,10 +42,10 @@ jobs: environment: ${{ steps.load-environment.outputs.environment }} steps: - name: Checkout calling repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-shared-deploy-image @@ -96,10 +96,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout calling repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-shared-deploy-image diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index 72dcdc6e..ad0ff90e 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -26,7 +26,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get current or bumped version tag id: bumpVersion