Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

build(deps): bump org.apache.jena:jena-arq from 4.8.0 to 4.10.0 in /backend #100

build(deps): bump org.apache.jena:jena-arq from 4.8.0 to 4.10.0 in /backend

build(deps): bump org.apache.jena:jena-arq from 4.8.0 to 4.10.0 in /backend #100

Workflow file for this run

name: PR build
on:
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 18
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
if: ${{ github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork }}
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -f ./pom.xml -B verify -Dsonar.projectKey=informatievlaanderen_vsds-demonstrator -Pcoverage
- name: Build (Forks) # https://portal.productboard.com/sonarsource/1-sonarcloud/c/50-sonarcloud-analyzes-external-pull-request
if: ${{ github.actor == 'dependabot[bot]' || github.event.pull_request.head.repo.fork }}
run: mvn -B verify