diff --git a/.github/workflows/ci-for-example.yaml b/.github/workflows/ci-for-example.yaml index 22a66b8..2705527 100644 --- a/.github/workflows/ci-for-example.yaml +++ b/.github/workflows/ci-for-example.yaml @@ -22,7 +22,7 @@ jobs: distribution: temurin java-version: 25 - name: Cache Maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/ci-from-template.yaml b/.github/workflows/ci-from-template.yaml index dd4ef85..d8ad848 100644 --- a/.github/workflows/ci-from-template.yaml +++ b/.github/workflows/ci-from-template.yaml @@ -52,7 +52,7 @@ jobs: distribution: temurin java-version: 25 - name: Cache Maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/generate-template.yaml b/.github/workflows/generate-template.yaml index 0dfe46f..05c5b5f 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@v4 + uses: actions/checkout@v6 with: ref: main fetch-depth: 0