diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 206a29f0..17374d01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: java-version: ['21','17'] steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Setup Java ${{ matrix.java-version }} uses: actions/setup-java@v5 @@ -54,7 +54,7 @@ jobs: timeout-minutes: 45 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Setup Java 21 uses: actions/setup-java@v5 diff --git a/.github/workflows/enforce_conventional_commits.yml b/.github/workflows/enforce_conventional_commits.yml index 5edc5a5e..818a913e 100644 --- a/.github/workflows/enforce_conventional_commits.yml +++ b/.github/workflows/enforce_conventional_commits.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: { fetch-depth: 0 } - name: Check Commit Messages diff --git a/.github/workflows/google-java-format.yml b/.github/workflows/google-java-format.yml index da5a0bbb..1dcf38a5 100644 --- a/.github/workflows/google-java-format.yml +++ b/.github/workflows/google-java-format.yml @@ -12,7 +12,7 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 # v2 minimum required + - uses: actions/checkout@v7 # v2 minimum required - uses: axel-op/googlejavaformat-action@v4 with: args: "--replace" diff --git a/.github/workflows/qodana_code_quality.yml b/.github/workflows/qodana_code_quality.yml index ba3102b3..2513ee9e 100644 --- a/.github/workflows/qodana_code_quality.yml +++ b/.github/workflows/qodana_code_quality.yml @@ -15,7 +15,7 @@ jobs: pull-requests: write checks: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d8431492..6a8147d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Check required secrets are present if: ${{ env.CENTRAL_USERNAME == '' || env.CENTRAL_PASSWORD == '' || env.GPG_PRIVATE_KEY == '' || env.GPG_PASSPHRASE == '' }}