Skip to content

Bump com.microsoft.azure:msal4j from 1.19.0 to 1.19.1 #177

Bump com.microsoft.azure:msal4j from 1.19.0 to 1.19.1

Bump com.microsoft.azure:msal4j from 1.19.0 to 1.19.1 #177

Workflow file for this run

# SPDX-FileCopyrightText: Copyright Contributors to the GXF project
#
# SPDX-License-Identifier: Apache-2.0
name: Gradle Pipeline
on:
push:
branches: [ "main" ]
tags: [ "v**" ]
pull_request:
branches: [ "main" ]
permissions: write-all
jobs:
build:
name: Gradle build and publish
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Setup Gradle to generate and submit dependency graphs
uses: gradle/actions/setup-gradle@v4
with:
dependency-graph: generate-and-submit
- name: Build with Gradle
run: ./gradlew build integrationTest testCodeCoverageReport integrationTestCodeCoverageReport sonar
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Publish Maven artifacts
if: github.ref == 'refs/heads/main' || github.ref_type == 'tag'
run: ./gradlew publish
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}