diff --git a/.github/workflows/backend-release-pr.yml b/.github/workflows/backend-release-pr.yml index 09ce37de3..9e21b8c11 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 09c7408af..64b79b78e 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 74456b39d..0fb0a4c31 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 1bd293ba5..adbbfbb1d 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 b4625dbaa..cc2a2be36 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 2ca039984..caaadcde9 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 932acd851..91038ef21 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