Bump org.apache.maven.plugins:maven-dependency-plugin from 3.6.1 to 3.8.0 in /sadl3/com.ge.research.sadl.parent #455
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: SADL Integration Workflow | |
# Runs whenever a pull request is created, reopened, or modified | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
workflow_dispatch: | |
# Runs integration workflow as a CI check: | |
# - Builds SADL source and runs unit tests | |
# - Builds SADL-Eclipse image | |
jobs: | |
integration: | |
container: | |
image: maven:${{ matrix.maven-version }} | |
volumes: | |
- /usr/bin/docker:/usr/bin/docker | |
- /var/run/docker.sock:/var/run/docker.sock | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
distribution: [ temurin ] | |
java-version: [ 17 ] | |
maven-version: [ 3.9.5 ] | |
os: [ ubuntu-22.04 ] | |
steps: | |
- name: Check out SADL source | |
uses: actions/[email protected] | |
- name: Set up Java and Maven | |
uses: actions/[email protected] | |
with: | |
cache: maven | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java-version }} | |
- name: Build SADL source | |
run: mvn -B package -f sadl3/com.ge.research.sadl.parent/pom.xml -Dtycho.localArtifacts=ignore | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Build SADL-Eclipse image | |
uses: docker/[email protected] | |
with: | |
context: sadl3/com.ge.research.sadl.parent/com.ge.research.sadl.product | |
file: sadl3/com.ge.research.sadl.parent/com.ge.research.sadl.product/Dockerfile | |
push: false | |
tags: sadl/sadl-eclipse:ci |