From 3084495287e47e9c98687760662eccf0f99f2341 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 07:58:51 +0000 Subject: [PATCH] Chore(deps): 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/mobile-lint.yml | 2 +- .github/workflows/mobile-unit-tests.yml | 2 +- .github/workflows/web-deploy-dev.yml | 2 +- .github/workflows/web-deploy-dockerhub.yml | 2 +- .github/workflows/web-deploy-production.yml | 2 +- .github/workflows/web-e2e-full-ondemand.yml | 2 +- .github/workflows/web-e2e-hp-ondemand.yml | 2 +- .github/workflows/web-e2e-prod-ondemand.yml | 2 +- .github/workflows/web-e2e-smoke.yml | 2 +- .github/workflows/web-lint.yml | 2 +- .github/workflows/web-nextjs-bundle-analysis.yml | 2 +- .github/workflows/web-tag-release.yml | 2 +- .github/workflows/web-unit-tests.yml | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/mobile-lint.yml b/.github/workflows/mobile-lint.yml index 8b63f19f..f0fef6bf 100644 --- a/.github/workflows/mobile-lint.yml +++ b/.github/workflows/mobile-lint.yml @@ -19,7 +19,7 @@ jobs: steps: # Checkout the code - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Enable Corepack run: corepack enable diff --git a/.github/workflows/mobile-unit-tests.yml b/.github/workflows/mobile-unit-tests.yml index d4ca3e50..7cfd153e 100644 --- a/.github/workflows/mobile-unit-tests.yml +++ b/.github/workflows/mobile-unit-tests.yml @@ -17,7 +17,7 @@ jobs: steps: # Checkout the code - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Enable Corepack run: corepack enable diff --git a/.github/workflows/web-deploy-dev.yml b/.github/workflows/web-deploy-dev.yml index 7f50959c..ec2af56f 100644 --- a/.github/workflows/web-deploy-dev.yml +++ b/.github/workflows/web-deploy-dev.yml @@ -37,7 +37,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token-user-login: 'github-actions[bot]' - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/yarn diff --git a/.github/workflows/web-deploy-dockerhub.yml b/.github/workflows/web-deploy-dockerhub.yml index 934bc60d..6f047f73 100644 --- a/.github/workflows/web-deploy-dockerhub.yml +++ b/.github/workflows/web-deploy-dockerhub.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev' || (github.event_name == 'release' && github.event.action == 'released') steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: docker/setup-qemu-action@v3 with: platforms: arm64 diff --git a/.github/workflows/web-deploy-production.yml b/.github/workflows/web-deploy-production.yml index 7aa82c08..b27d0dea 100644 --- a/.github/workflows/web-deploy-production.yml +++ b/.github/workflows/web-deploy-production.yml @@ -19,7 +19,7 @@ jobs: ARCHIVE_NAME: ${{ github.event.repository.name }}-${{ github.event.release.tag_name }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/yarn diff --git a/.github/workflows/web-e2e-full-ondemand.yml b/.github/workflows/web-e2e-full-ondemand.yml index bf7785d2..3b8fc400 100644 --- a/.github/workflows/web-e2e-full-ondemand.yml +++ b/.github/workflows/web-e2e-full-ondemand.yml @@ -19,7 +19,7 @@ jobs: matrix: containers: [1, 2, 3, 4, 5, 6, 7, 8] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/cypress with: diff --git a/.github/workflows/web-e2e-hp-ondemand.yml b/.github/workflows/web-e2e-hp-ondemand.yml index 04a549dc..a319a183 100644 --- a/.github/workflows/web-e2e-hp-ondemand.yml +++ b/.github/workflows/web-e2e-hp-ondemand.yml @@ -19,7 +19,7 @@ jobs: matrix: containers: [1, 2, 3] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/cypress with: diff --git a/.github/workflows/web-e2e-prod-ondemand.yml b/.github/workflows/web-e2e-prod-ondemand.yml index 48ea3641..d616ea59 100644 --- a/.github/workflows/web-e2e-prod-ondemand.yml +++ b/.github/workflows/web-e2e-prod-ondemand.yml @@ -18,7 +18,7 @@ jobs: matrix: containers: [1] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/cypress with: diff --git a/.github/workflows/web-e2e-smoke.yml b/.github/workflows/web-e2e-smoke.yml index a5f603c1..61ecfb7a 100644 --- a/.github/workflows/web-e2e-smoke.yml +++ b/.github/workflows/web-e2e-smoke.yml @@ -21,7 +21,7 @@ jobs: containers: [1, 2, 3, 4, 5] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/cypress with: diff --git a/.github/workflows/web-lint.yml b/.github/workflows/web-lint.yml index 27ba8b4d..9aae9d06 100644 --- a/.github/workflows/web-lint.yml +++ b/.github/workflows/web-lint.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/yarn diff --git a/.github/workflows/web-nextjs-bundle-analysis.yml b/.github/workflows/web-nextjs-bundle-analysis.yml index b3633931..e06c1046 100644 --- a/.github/workflows/web-nextjs-bundle-analysis.yml +++ b/.github/workflows/web-nextjs-bundle-analysis.yml @@ -22,7 +22,7 @@ jobs: analyze: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies uses: ./.github/actions/yarn diff --git a/.github/workflows/web-tag-release.yml b/.github/workflows/web-tag-release.yml index a38b4a90..6b2f1bee 100644 --- a/.github/workflows/web-tag-release.yml +++ b/.github/workflows/web-tag-release.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/web-unit-tests.yml b/.github/workflows/web-unit-tests.yml index 2327e050..29f07386 100644 --- a/.github/workflows/web-unit-tests.yml +++ b/.github/workflows/web-unit-tests.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/yarn