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