diff --git a/.github/workflows/ci-for-example.yaml b/.github/workflows/ci-for-example.yaml index 2705527..2e1ac53 100644 --- a/.github/workflows/ci-for-example.yaml +++ b/.github/workflows/ci-for-example.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up JDK 25 uses: actions/setup-java@v5 with: diff --git a/.github/workflows/ci-from-template.yaml b/.github/workflows/ci-from-template.yaml index 3e5b182..d7dd7ba 100644 --- a/.github/workflows/ci-from-template.yaml +++ b/.github/workflows/ci-from-template.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout PR branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # checkout the pull request head ref when available, otherwise fallback to the workflow ref ref: ${{ github.head_ref || github.ref }} diff --git a/.github/workflows/generate-template.yaml b/.github/workflows/generate-template.yaml index 05c5b5f..d0d1285 100644 --- a/.github/workflows/generate-template.yaml +++ b/.github/workflows/generate-template.yaml @@ -14,7 +14,7 @@ jobs: GENERATED_BRANCH_NAME: generated-template steps: - name: Checkout main - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: main fetch-depth: 0