Skip to content

chore(deps): update dependency ch.qos.logback:logback-classic to v1.5.27 #749

chore(deps): update dependency ch.qos.logback:logback-classic to v1.5.27

chore(deps): update dependency ch.qos.logback:logback-classic to v1.5.27 #749

Workflow file for this run

#
# CodeOwners Tools
# Copyright (C) 2023-2025 Niels Basjes
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an AS IS BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: 'CodeOwners Tools'
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
name: 'Build and test'
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
mvn: "./mvnw"
- os: windows-latest
mvn: ".\\mvnw.cmd"
steps:
- name: 'Checkout sourcecode'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 'Cache Local Maven Repository'
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: 'Setup: Install JDK 8, 21 & 25'
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'temurin'
java-version: |
8
21
25
- name: 'Build'
run: ${{ matrix.mvn }} clean install
- name: 'Codecov'
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: 'Ensure build is reproducible'
run: |
${{ matrix.mvn }} clean verify -PskipQuality -PartifactCompare