Bump net.javacrumbs.json-unit:json-unit-assertj from 3.2.5 to 3.2.7 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
# Copyright The original authors | |
# | |
# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
name: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
JAVA_VERSION: '21' | |
JAVA_DISTRO: 'temurin' | |
jobs: | |
build: | |
if: startsWith(github.event.head_commit.message, '🏁 Releasing version') != true && startsWith(github.event.head_commit.message, '⬆️ Next version') != true | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Check out repository' | |
uses: actions/checkout@v4 | |
- name: 'Set up Java' | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
distribution: ${{ env.JAVA_DISTRO }} | |
cache: maven | |
- name: 'Build' | |
run: ./mvnw -ntp -B --file pom.xml verify | |
env: | |
CONNECT_VERSION: ${{ matrix.connect_version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
connect_version: [ | |
TRUNK, # For testing new features not yet released | |
NIGHTLY, # Bleeding edge snapshot builds from Debezium; can optionally disable this version during CI testing if an upstream bug causes test failures | |
LATEST_STABLE, | |
"3.6", | |
"3.5", | |
"3.4", | |
"3.3", | |
"3.2", | |
"3.1", | |
"3.0", # Quote versions so that x.0 isn't parsed as a number and turned into x | |
"2.8", | |
] |