Skip to content

Bump actions/setup-java from 5.2.0 to 5.3.0 #239

Bump actions/setup-java from 5.2.0 to 5.3.0

Bump actions/setup-java from 5.2.0 to 5.3.0 #239

Workflow file for this run

name: "Build"
on: ["push", "pull_request", "workflow_dispatch"]
permissions:
contents: "read"
jobs:
build:
runs-on: "ubuntu-26.04"
if: "${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}"
steps:
- name: "Checkout repository"
uses: "actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10" # v6.0.3
with:
persist-credentials: false
- name: "Set up Gradle"
uses: "gradle/actions/setup-gradle@3f131e8634966bd73d06cc69884922b02e6faf92" # v6.2.0
with:
cache-disabled: true
- name: "Set up Java"
uses: "actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287" # v5.3.0
with:
distribution: "temurin"
java-version: 25
check-latest: true
- name: "Build with Gradle"
run: "./gradlew build --stacktrace"
- name: "Upload artifacts to GitHub"
uses: "actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a" # v7.0.1
with:
name: "Artifacts"
path: "build/libs/"
if-no-files-found: "error"