Bump commons-compress to 1.26.2 #145
Workflow file for this run
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
name: "Frogbot Scan Pull Request" | |
on: | |
pull_request_target: | |
types: [opened, synchronize] | |
permissions: | |
pull-requests: write | |
contents: read | |
jobs: | |
scan-pull-request: | |
runs-on: ubuntu-latest | |
# A pull request needs to be approved, before Frogbot scans it. Any GitHub user who is associated with the | |
# "frogbot" GitHub environment can approve the pull request to be scanned. | |
environment: frogbot | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
# Install prerequisites | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "8" | |
distribution: "zulu" | |
# Setup Gradle is needed only in case that Gradle wrapper isn't used. | |
# - name: Setup Gradle | |
# uses: gradle/gradle-build-action@v2 | |
- uses: jfrog/frogbot@v2 | |
env: | |
# [Mandatory] | |
# JFrog platform URL (This functionality requires version 3.29.0 or above of Xray) | |
JF_URL: ${{ secrets.FROGBOT_URL }} | |
# [Mandatory if JF_USER and JF_PASSWORD are not provided] | |
# JFrog access token with 'read' permissions on Xray service | |
JF_ACCESS_TOKEN: ${{ secrets.FROGBOT_ACCESS_TOKEN }} | |
# [Mandatory] | |
# The GitHub token automatically generated for the job | |
JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} |