Bump com.fasterxml.jackson.core:jackson-databind from 2.13.4.1 to 2.13.4.2 #86
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: Spark temporal query snapshot build 2.11 | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
# avoid "BindException: Cannot assign requested address" caused by non-unique hosts file of ubuntu-latest | |
SPARK_LOCAL_IP: 127.0.0.1 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Cache Maven | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-maven- | |
- name: Build with Maven for Scala 2.11 | |
run: mvn -Pscala-2.11 -B clean test --file pom.xml |