diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 898f28674..1dd9acb97 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -16,7 +16,7 @@ jobs: issues: write # to be able to comment on released issues pull-requests: write # to be able to comment on released pull requests steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 483a1a0a2..d78e38345 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Check out the repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ env.REPO_SCOPED_TOKEN || github.token }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6dbbcb609..981d1a741 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 ref: ${{ inputs.release-tag || github.event.pull_request.head.ref || github.ref }} @@ -72,7 +72,7 @@ jobs: permissions: contents: write # grants permission to create a release on github steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup backend uses: ./.github/actions/setup-environment diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 02c884cd3..d49eec0c0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,7 +34,7 @@ jobs: needs: access-check runs-on: ubuntu-latest-8 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -76,7 +76,7 @@ jobs: cancel-in-progress: true name: "Codemod tests ${{matrix.size}}: Sync Graph=${{matrix.sync_graph}}" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.sha }} @@ -105,7 +105,7 @@ jobs: needs: access-check runs-on: ubuntu-latest-16 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/ty.yml b/.github/workflows/ty.yml index bce42839d..fe869990f 100644 --- a/.github/workflows/ty.yml +++ b/.github/workflows/ty.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0