Skip to content

Update dependency org.apache.logging.log4j:log4j-slf4j2-impl to v2.25.4 #2874

Update dependency org.apache.logging.log4j:log4j-slf4j2-impl to v2.25.4

Update dependency org.apache.logging.log4j:log4j-slf4j2-impl to v2.25.4 #2874

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'releases/*'
pull_request:
branches:
- '*'
permissions: {}
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Build
uses: ./.github/actions/run-gradle
- name: Archive Open Test Reports
uses: ./.github/actions/archive-reports
if: ${{ always() }}
Windows:
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Build
uses: ./.github/actions/run-gradle
- name: Archive Open Test Reports
uses: ./.github/actions/archive-reports
if: ${{ always() }}
macOS:
runs-on: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Build
uses: ./.github/actions/run-gradle
- name: Archive Open Test Reports
uses: ./.github/actions/archive-reports
if: ${{ always() }}
publish_artifacts:
name: Publish Snapshot Artifacts
needs: macOS
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.repository == 'ota4j-team/open-test-reporting' && (startsWith(github.ref, 'refs/heads/releases/') || github.ref == 'refs/heads/main')
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Publish
uses: ./.github/actions/run-gradle
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
with:
arguments: publishAllPublicationsToMavenCentralSnapshotsRepository -x check
update_documentation:
name: Deploy Schemas
needs: macOS
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.repository == 'ota4j-team/open-test-reporting' && github.ref == 'refs/heads/main'
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Configure Git
shell: bash
run: |
git config --global user.name "JUnit Team"
git config --global user.email "team@junit.org"
- name: Publish
uses: ./.github/actions/run-gradle
env:
GIT_USERNAME: git
GIT_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
with:
arguments: gitPublishPush