Skip to content

Bump ch.qos.logback:logback-classic from 1.2.10 to 1.2.13 #80

Bump ch.qos.logback:logback-classic from 1.2.10 to 1.2.13

Bump ch.qos.logback:logback-classic from 1.2.10 to 1.2.13 #80

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: "3.x"
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: "17"
distribution: "adopt"
- name: Build with Maven
run: mvn -B package --file pom.xml