build(deps): bump commons-codec:commons-codec from 1.16.1 to 1.17.2 #324
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: Binary compatibility verification (for API) | |
on: | |
push: | |
paths: | |
- 'scalabot-meta/**' | |
- 'scalabot-extension/**' | |
pull_request: | |
paths: | |
- 'scalabot-meta/**' | |
- 'scalabot-extension/**' | |
permissions: | |
contents: read | |
jobs: | |
apiCompatibilityCheck: | |
timeout-minutes: 8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt-hotspot' | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build and run binary compatibility verification | |
run: ./gradlew apiCheck |