Skip to content

Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 #67

Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3

Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 #67

Workflow file for this run

# 🏃‍♀️ Continuous Integration and Delivery: Branch Testing
# ======================================================
---
name: 🔁 Branch integration testing
# Driving Event
# -------------
#
# What event starts this workflow: a push to any branch other than main
on:
push:
branches:
- '**'
- '!main'
workflow_dispatch:
# What to Do
# ----------
#
# Test the software with mvn test
jobs:
branch-testing:
name: 🪵 Branch Testing
runs-on: ubuntu-latest
if: github.actor != 'pdsen-ci'
strategy:
matrix:
java-version: [8, 11]
steps:
-
name: 💳 Checkout
uses: actions/checkout@v4
with:
lfs: true
fetch-depth: 0
token: ${{secrets.ADMIN_GITHUB_TOKEN || github.token}}
-
name: 💵 Maven Cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
# The "key" used to indicate a set of cached files is the operating system runner
# plus "mvn" for Maven-specific builds, plus a hash of the `pom.xml` files, which
# should uniquely identify the dependent jars; plus "pds" because we pds-prefix
# everything with "pds" in PDS—even when the context is obvious! 😅
key: pds-${{runner.os}}-mvn-${{hashFiles('**/pom.xml')}}
# To restore a set of files, we only need to match a prefix of the saved key.
restore-keys: pds-${{runner.os}}-mvn-
-
name: ☕️ Set up OpenJDK
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: ${{matrix.java-version}}
-
name: Install Parent Project
run: |
echo "PARENT_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) >> $GITHUB_ENV
mvn install
-
name: 💳 Checkout
uses: actions/checkout@v4
with:
repository: NASA-PDS/validate
-
name: Build and Test Validate repo
run: |
cd validate
mvn versions:set -DnewVersion=${{ env.PARENT_VERSION }}
mvn clean site install
cd ..
-
name: 💳 Checkout
uses: actions/checkout@v4
with:
repository: NASA-PDS/pds4-information-model
-
name: Build and Test PDS4 IM repo
run: |
cd pds4-information-model
mvn versions:set -DnewVersion=${{ env.PARENT_VERSION }}
mvn clean site install
...
# -*- mode: yaml; indent: 4; fill-column: 120; coding: utf-8 -*-