[9.4] (backport #19428) Update concurrent-ruby gem #4976
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: Scan for vulnerabilities | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| workflow_dispatch: | |
| jobs: | |
| scan_image: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repo content | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5.7.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: build tar distribution | |
| run: ./gradlew clean assembleTarDistribution | |
| - run: mkdir scan | |
| - run: tar -zxf ../build/logstash-*.tar.gz | |
| working-directory: ./scan | |
| - name: scan image | |
| uses: anchore/scan-action@e1165082ffb1fe366ebaf02d8526e7c4989ea9d2 # v7.4.0 | |
| with: | |
| path: "./scan" | |
| fail-build: true | |
| severity-cutoff: critical | |
| output-format: table |