chore(deps): update docker.elastic.co/kibana/kibana docker tag to v8.12.1 #742
Workflow file for this run
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
name: aws-kinesis-consumer-project | |
on: | |
push: | |
paths: | |
- "aws-kinesis-project/consumer/**" | |
branches: [ main ] | |
pull_request: | |
paths: | |
- "aws-kinesis-project/consumer/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
name: Run Unit & Integration Tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "./aws-kinesis-project/consumer" | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build and analyze | |
run: ./mvnw clean verify |