[Snyk] Security upgrade org.apache.tika:tika-core from 2.8.0 to 2.9.1 #85
This file contains 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
# This workflow will build and test a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
name: Java CI with Corretto 8 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
pull-requests: write | |
contents: write | |
checks: write | |
issues: write | |
repository-projects: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'corretto' | |
cache: maven | |
- name: Run texts | |
run: mvn -B test | |
- name: Publish test coverage results | |
uses: PavanMudigonda/jacoco-reporter@v4.8 | |
with: | |
coverage_results_path: 'tagyCore/target/site/jacoco/jacoco.xml' | |
coverage_report_title: 'Test coverage results' | |
coverage_report_name: 'Test coverage results' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
minimum_coverage: 80 | |
fail_below_threshold: false | |
publish_only_summary: true |