diff --git a/.github/workflows/build-deploy-snapshot.yml b/.github/workflows/build-deploy-snapshot.yml index 719440b..3a9e193 100644 --- a/.github/workflows/build-deploy-snapshot.yml +++ b/.github/workflows/build-deploy-snapshot.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Source - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache maven repository uses: actions/cache@v4 diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 53a48cb..6edfdf7 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -16,11 +16,11 @@ jobs: # Checkout the base repository's code - name: Checkout base repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Explicitly check out the pull request's head branch - name: Checkout pull request code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }}