From 8bc84ef233e2c04a3660cce2ad39f01056fa777b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 00:49:40 +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/backend-release-pr.yml | 2 +- .github/workflows/backend-release.yml | 2 +- .github/workflows/frontend-release-pr.yml | 2 +- .github/workflows/frontend-release.yml | 2 +- .github/workflows/gateway-release-pr.yml | 2 +- .github/workflows/gateway-release.yml | 2 +- .github/workflows/pr-checks.yml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/backend-release-pr.yml b/.github/workflows/backend-release-pr.yml index 09ce37de..9e21b8c1 100644 --- a/.github/workflows/backend-release-pr.yml +++ b/.github/workflows/backend-release-pr.yml @@ -24,7 +24,7 @@ jobs: releaseIt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Use the app token for checkout as well diff --git a/.github/workflows/backend-release.yml b/.github/workflows/backend-release.yml index 09c7408a..64b79b78 100644 --- a/.github/workflows/backend-release.yml +++ b/.github/workflows/backend-release.yml @@ -17,7 +17,7 @@ jobs: if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'backend') && contains(github.event.pull_request.labels.*.name, 'release') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Use the app token for checkout as well diff --git a/.github/workflows/frontend-release-pr.yml b/.github/workflows/frontend-release-pr.yml index 74456b39..0fb0a4c3 100644 --- a/.github/workflows/frontend-release-pr.yml +++ b/.github/workflows/frontend-release-pr.yml @@ -24,7 +24,7 @@ jobs: releaseIt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.APP_INSTALLATION_TOKEN }} diff --git a/.github/workflows/frontend-release.yml b/.github/workflows/frontend-release.yml index 1bd293ba..adbbfbb1 100644 --- a/.github/workflows/frontend-release.yml +++ b/.github/workflows/frontend-release.yml @@ -16,7 +16,7 @@ jobs: if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'frontend') && contains(github.event.pull_request.labels.*.name, 'release') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.APP_INSTALLATION_TOKEN }} diff --git a/.github/workflows/gateway-release-pr.yml b/.github/workflows/gateway-release-pr.yml index b4625dba..cc2a2be3 100644 --- a/.github/workflows/gateway-release-pr.yml +++ b/.github/workflows/gateway-release-pr.yml @@ -24,7 +24,7 @@ jobs: releaseIt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Use the app token for checkout as well diff --git a/.github/workflows/gateway-release.yml b/.github/workflows/gateway-release.yml index 2ca03998..caaadcde 100644 --- a/.github/workflows/gateway-release.yml +++ b/.github/workflows/gateway-release.yml @@ -16,7 +16,7 @@ jobs: if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'gateway') && contains(github.event.pull_request.labels.*.name, 'release') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Use the app token for checkout as well diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 932acd85..91038ef2 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node.js uses: actions/setup-node@v4