diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8393601..68a6d07 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Set up JDK 25 @@ -15,7 +15,7 @@ jobs: distribution: temurin java-version: 25 - name: Cache Gradle packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} @@ -27,7 +27,7 @@ jobs: with: path: build/libs/*.jar - - uses: docker/login-action@v4 + - uses: docker/login-action@v4.2.0 if: github.event_name == 'push' && github.actor != 'dependabot[bot]' with: registry: ghcr.io/raeperd