diff --git a/.github/workflows/build-deploy-snapshot.yml b/.github/workflows/build-deploy-snapshot.yml index b030b45..e8d3e8b 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@v4 + uses: actions/checkout@v5 - name: Cache maven repository uses: actions/cache@v4 diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index a39755b..53a48cb 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@v4 + uses: actions/checkout@v5 # Explicitly check out the pull request's head branch - name: Checkout pull request code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }}