Bump org.json:json from 20230227 to 20231013 in /benchmarks #12
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: Build branches | |
on: | |
push: | |
branches-ignore: | |
- 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Scm | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
- name: Configure Maven Settings | |
run : cp .github/workflows/settings.xml $HOME/.m2/settings.xml | |
- name: Compute version | |
id: compute_version | |
uses: mathieudutour/github-tag-action@v6.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: true | |
release_branches: ".*" | |
- name: Build with Maven | |
run: | | |
echo "[INFO] if merged, this build would be deployed in koson:${{ steps.compute_version.outputs.new_version }}" | |
mvn clean test |