-
Notifications
You must be signed in to change notification settings - Fork 73
Ci testing Ejemplo :( #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
3828f31
f0fe918
3c04557
ef9bdac
95d61b2
167e86c
222fc95
5d7e4e4
da560e0
e3b282c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,10 +6,10 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - name: set up JDK 11 | ||
| - name: set up JDK 17 | ||
| uses: actions/setup-java@v3 | ||
| with: | ||
| java-version: '11' | ||
| java-version: '17' | ||
| distribution: 'temurin' | ||
|
Comment on lines
+9
to
13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainLGTM! JDK upgraded to 17. The Java version upgrade aligns with the project's migration to Java 17 for compilation and runtime. However, static analysis flags that - - name: set up JDK 17
- uses: actions/setup-java@v3
+ - name: Set up JDK 17
+ uses: actions/setup-java@v4Verify the latest stable version: 🌐 Web query: 💡 Result: Latest released tag: v5.0.0. [1][2] Sources:
Update GitHub Actions setup-java to the latest stable version (v5). The current code uses - name: Set up JDK 17
uses: actions/setup-java@v3
+ uses: actions/setup-java@v5
🧰 Tools🪛 actionlint (1.7.8)10-10: the runner of "actions/setup-java@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue (action) 🤖 Prompt for AI Agents |
||
| cache: gradle | ||
|
|
||
|
|
@@ -18,4 +18,4 @@ jobs: | |
|
|
||
| - name: Android Test Report | ||
| uses: asadmansr/[email protected] | ||
| if: ${{ always() }} | ||
| if: ${{ always() }} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
| networkTimeout=10000 | ||
| validateDistributionUrl=true | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
LGTM! JDK upgraded to 17.
The Java version upgrade aligns with the project's migration to Java 17.
However, static analysis flags outdated actions. Consider upgrading:
Verify the latest stable versions:
🌐 Web query:
💡 Result:
As of Oct 18, 2025:
Sources: repository READMEs. [1] https://github.com/actions/checkout, [2] https://github.com/actions/setup-java.
Upgrade GitHub Actions to latest stable versions.
The actions/checkout and actions/setup-java should be upgraded to v5:
🧰 Tools
🪛 actionlint (1.7.8)
16-16: the runner of "actions/setup-java@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue
(action)
🤖 Prompt for AI Agents