Skip to content

fix(deps): update junit-framework monorepo to v6 #801

fix(deps): update junit-framework monorepo to v6

fix(deps): update junit-framework monorepo to v6 #801

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- "**.md"
- "renovate.json"
pull_request:
paths-ignore:
- "**.md"
- "renovate.json"
jobs:
build:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
name: Build with Java 8
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
with:
java-version: "8"
distribution: "temurin"
- name: Compute version
id: version
run: echo "version=0.1.0-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- run: java -version
- name: Setup Gradle
uses: gradle/actions/setup-gradle@748248ddd2a24f49513d8f472f81c3a07d4d50e1 # v4.4.4
with:
validate-wrappers: true
- name: Build with Gradle
run: ./gradlew build --scan
env:
VERSION: ${{ steps.version.outputs.version }}
- name: Upload artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: artifacts
path: build/libs/*.jar