Skip to content

chore(deps): bump ch.qos.logback:logback-classic from 1.5.34 to 1.5.35 #3727

chore(deps): bump ch.qos.logback:logback-classic from 1.5.34 to 1.5.35

chore(deps): bump ch.qos.logback:logback-classic from 1.5.34 to 1.5.35 #3727

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: NeonBee Voter
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
permissions: {}
jobs:
build:
name: Test Java ${{ matrix.java }} on ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
strategy:
matrix:
java: ['17.0', '21.0']
platform: [ubuntu-22.04] # macOS-latest, windows-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287 # v5.3.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'gradle'
- name: Cache SonarCloud packages
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew --no-daemon build test -PtestPlan=withGlobalTimeout -PunitTestTimeout=30s
- name: Run Sonarqube
if: github.event_name != 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew --no-daemon sonar
- name: Run javadoc
run: ./gradlew --no-daemon javadoc testJavadoc