Skip to content

Bump gradle-wrapper from 9.5.1 to 9.6.0 (#41) #159

Bump gradle-wrapper from 9.5.1 to 9.6.0 (#41)

Bump gradle-wrapper from 9.5.1 to 9.6.0 (#41) #159

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0" # v7.0.0
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"