Skip to content

⬆️ Bump org.apache.commons:commons-lang3 from 3.10 to 3.18.0 in /examples #63

⬆️ Bump org.apache.commons:commons-lang3 from 3.10 to 3.18.0 in /examples

⬆️ Bump org.apache.commons:commons-lang3 from 3.10 to 3.18.0 in /examples #63

Workflow file for this run

# This workflow build and test pull requests
name: Build Pull Request
on:
pull_request:
branches:
- "*"
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb-version: ["5.0", "6.0", "7.0", "8.0"]
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "21"
cache: "maven"
- name: Build and Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
run: |
mvn -B clean verify -Dmongodb.version="${{ matrix.mongodb-version }}"