diff --git a/.github/workflows/build-pipeline.yaml b/.github/workflows/build-pipeline.yaml index 822cc17..499c66d 100644 --- a/.github/workflows/build-pipeline.yaml +++ b/.github/workflows/build-pipeline.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Java uses: actions/setup-java@v5 diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index 29af284..966b234 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -28,7 +28,7 @@ jobs: with: tag: ${{ env.RELEASE_VERSION }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 if: steps.checkTag.outputs.exists == 'false' with: persist-credentials: false @@ -88,7 +88,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: 'Check out repository' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.RELEASE_VERSION }} fetch-depth: 0 @@ -101,7 +101,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: 'Cache Maven packages' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -126,7 +126,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Check out repository' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # otherwise, pushing refs to dest repo fails @@ -146,7 +146,7 @@ jobs: distribution: ${{ env.JAVA_DISTRO }} - name: 'Cache Maven packages' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}