From fd62d3bb8dc393987877c38b55196a50cdcee2e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 12:50:12 +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/build-and-quality-checks.yml | 2 +- .github/workflows/check_pr_title.yml | 2 +- .github/workflows/create-hotfix-branch.yml | 2 +- .github/workflows/deploy-pubdev.yml | 2 +- .github/workflows/draft-new-release.yml | 2 +- .github/workflows/housekeeping.yaml | 2 +- .github/workflows/publish-new-release.yml | 2 +- .github/workflows/test.yml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-and-quality-checks.yml b/.github/workflows/build-and-quality-checks.yml index 4f04aea3..e7aa813a 100644 --- a/.github/workflows/build-and-quality-checks.yml +++ b/.github/workflows/build-and-quality-checks.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Dart uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c #v1.3 diff --git a/.github/workflows/check_pr_title.yml b/.github/workflows/check_pr_title.yml index da5e7360..9f5b87b8 100644 --- a/.github/workflows/check_pr_title.yml +++ b/.github/workflows/check_pr_title.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout source branch - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check PR title uses: rudderlabs/github-action-check-pr-title@v1.0.11 diff --git a/.github/workflows/create-hotfix-branch.yml b/.github/workflows/create-hotfix-branch.yml index e2ec59f5..16113d51 100644 --- a/.github/workflows/create-hotfix-branch.yml +++ b/.github/workflows/create-hotfix-branch.yml @@ -14,7 +14,7 @@ jobs: if: github.ref == 'refs/heads/main' steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/deploy-pubdev.yml b/.github/workflows/deploy-pubdev.yml index 6d2502f6..29bff71b 100644 --- a/.github/workflows/deploy-pubdev.yml +++ b/.github/workflows/deploy-pubdev.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # For workflow_run triggers, explicitly use main branch diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index d08ff123..15ea8ea9 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -10,7 +10,7 @@ jobs: if: startsWith(github.ref, 'refs/heads/develop') || startsWith(github.ref, 'refs/heads/hotfix/') steps: - name: Checkout source branch - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/housekeeping.yaml b/.github/workflows/housekeeping.yaml index 694c297e..053d6cb2 100644 --- a/.github/workflows/housekeeping.yaml +++ b/.github/workflows/housekeeping.yaml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/publish-new-release.yml b/.github/workflows/publish-new-release.yml index 60cbdd51..bab4a641 100644 --- a/.github/workflows/publish-new-release.yml +++ b/.github/workflows/publish-new-release.yml @@ -23,7 +23,7 @@ jobs: echo "release_version=$VERSION" >> $GITHUB_OUTPUT - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 76fb2f2a..ccb26994 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0