Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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à)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# CHECKOUT
# -----------------------------
- name: Checkout sources
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down