diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 039ecd4..d022546 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -17,7 +17,7 @@ jobs: name: Unit Tests runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + - uses: actions/checkout@v5 - id: action uses: ./ with: diff --git a/action.yml b/action.yml index 1583e33..c362a67 100644 --- a/action.yml +++ b/action.yml @@ -88,14 +88,14 @@ runs: triggers: ${{ (github.event_name == 'pull_request' && inputs.triggers) || '' }} diff_branch: ${{ inputs.diff_branch }} - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + - uses: actions/checkout@v5 with: fetch-depth: 0 repository: ${{ inputs.repository }} ref: ${{ inputs.branch }} # Setup Java and cache dir - - uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5 + - uses: actions/setup-java@v5 with: cache: ${{ inputs.java-cache }} distribution: ${{ inputs.java-distribution }} @@ -135,4 +135,4 @@ runs: # Fix - Clone for action.yml and other verifications - name: Checkout Action repo to pass tests if: always() && inputs.repository != github.repository - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + uses: actions/checkout@v5