Skip to content

build(deps): bump org.json:json from 20230618 to 20240303 #176

build(deps): bump org.json:json from 20230618 to 20240303

build(deps): bump org.json:json from 20230618 to 20240303 #176

Workflow file for this run

#
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) StreamThoughts
#
# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
#
name: Main Build
on:
push:
branches: [ master ]
env:
JAVA_VERSION: '17'
JAVA_DISTRO: 'zulu'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Set up Java'
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
cache: 'maven'
- name: 'Build with Maven'
run: |
chmod +x ./mvnw
./mvnw -ntp -B verify --file pom.xml
- name: 'Cache SonarCloud packages'
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: 'Build and analyze'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./mvnw -ntp -B -DskipTests verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=streamthoughts_kafka-connect-file-pulse