diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 3528a8b1..a7a90ff9 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v6 + uses: actions/checkout@v7 # ... (Setup Versioni, JDK, Go, Gradle, NDK rimangono uguali) ... # (Ometto per brevità, copia quelli che avevi già) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7be1ff3c..67f9db5a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: # CHECKOUT # ----------------------------- - name: Checkout sources - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 58ed4e38..5a21731d 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -9,7 +9,7 @@ jobs: outputs: changed: ${{ steps.changeDetection.outputs.should-run }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Get changed files id: changed-files uses: tj-actions/changed-files@v47 @@ -31,7 +31,7 @@ jobs: needs: dependency-change-verification if: needs.dependency-change-verification.outputs.changed == 'true' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Read Go version from project run: echo "GO_VERSION=$(grep -E "^de\.felixnuesse\.extract\.goVersion=" gradle.properties | cut -d'=' -f2)" - name: Set up JDK 17 diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index 25a98457..517a33f3 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -11,7 +11,7 @@ jobs: changed: ${{ steps.changeDetection.outputs.should-run }} files: ${{ steps.changeDetection.outputs.files }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Get changed files id: changed-files uses: tj-actions/changed-files@v47 @@ -36,7 +36,7 @@ jobs: needs: string-change-verification if: needs.string-change-verification.outputs.changed == 'true' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Prepare Profanity Check