Skip to content

Bump joda-time:joda-time from 2.12.5 to 2.12.6 #99

Bump joda-time:joda-time from 2.12.5 to 2.12.6

Bump joda-time:joda-time from 2.12.5 to 2.12.6 #99

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Testing For PRs
on: [ pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
docker-version: # See https://endoflife.date/docker-engine
- 20.10.24 # EOL ?
- 23.0.6 # EOL ?
- 24.0.2 # EOL ?
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Set up docker ${{ matrix.docker-version }}
run: |
curl -sL https://howtowhale.github.io/dvm/downloads/latest/install.sh | sh
source ~/.dvm/dvm.sh; dvm install ${{ matrix.docker-version }}
source ~/.dvm/dvm.sh; dvm use ${{ matrix.docker-version }} && docker swarm init && docker version
- name: Build with Gradle
run: ./gradlew assemble check