Bump org.apache.logging.log4j:log4j-api from 2.23.1 to 2.25.1 #151
Workflow file for this run
This file contains hidden or 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: CyberAPI Pull Request Check | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [17] | |
| fail-fast: true | |
| permissions: | |
| contents: write | |
| packages: write | |
| steps: | |
| - name: Actions Checkout | |
| uses: actions/checkout@v3.0.2 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v3.3.0 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: 'temurin' | |
| cache: 'gradle' | |
| - name: Validate Gradle Wrapper | |
| uses: gradle/wrapper-validation-action@v1.0.4 | |
| - name: Set Gradle Version | |
| uses: gradle/gradle-build-action@v2.4.2 | |
| with: | |
| gradle-version: release-candidate | |
| - name: Build Gradle | |
| uses: gradle/gradle-build-action@v2.4.2 | |
| with: | |
| arguments: shadowJar --stacktrace |