Skip to content

chore(deps): update dependency org.apache.maven.plugins:maven-artifac… #72

chore(deps): update dependency org.apache.maven.plugins:maven-artifac…

chore(deps): update dependency org.apache.maven.plugins:maven-artifac… #72

Workflow file for this run

#
# CodeOwners Tools
# Copyright (C) 2023 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: ubuntu-latest
steps:
- name: 'Checkout sourcecode'
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: 'Cache Local Maven Repository'
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: 'Setup: Install JDK 17'
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
distribution: 'temurin'
java-version: |
17
- name: 'Build'
run: ./mvnw clean install -PuseLocalReproduceRepo
- name: 'Codecov'
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: 'Ensure build is reproducible'
run: |
./mvnw clean verify -PskipQuality -PuseLocalReproduceRepo -PartifactCompare