diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 0a1968d0..6b0a3288 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -28,7 +28,7 @@ jobs: echo "Branch is ${{ steps.branch.outputs.base_branch }}" - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ steps.branch.outputs.base_branch }} fetch-depth: 0 diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml index c6108181..cf4705c8 100644 --- a/.github/workflows/publish-snapshot.yml +++ b/.github/workflows/publish-snapshot.yml @@ -24,7 +24,7 @@ jobs: exit 1 fi - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Install JDK # Configure the maven settings.xml and add a server entry with maven central token username/password and GPG private key # The server-username, server-password and gpg-passphrase are declared as env variables. diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b4e7568d..71aee83c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository at release tag - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.release.tag_name }} # Uses the release tag fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 558320ed..a8da944e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v5 with: