Skip to content

build(deps): bump io.projectreactor.netty:reactor-netty-http from 1.1.18 to 1.1.19 #1650

build(deps): bump io.projectreactor.netty:reactor-netty-http from 1.1.18 to 1.1.19

build(deps): bump io.projectreactor.netty:reactor-netty-http from 1.1.18 to 1.1.19 #1650

Workflow file for this run

################################################################################
# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available 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.
#
# SPDX-License-Identifier: Apache-2.0
################################################################################
name: Maven Test Execution
on:
pull_request:
types: [opened, reopened, synchronize]
workflow_call:
jobs:
analyze:
runs-on: ubuntu-latest
env:
DOCKER_BUILDKIT: 1
permissions:
actions: read
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
#Use Maven package cache
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
#Verify with tests
- name: Verify
run: ./mvnw -B verify
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}