cert-manager: using cert manager client for CR #2737
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: Dependencies diff | |
on: pull_request_target | |
jobs: | |
diff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Build project | |
run: mvn --quiet clean install | |
- name: Create directories | |
run: | | |
mkdir -p ${RUNNER_TEMP}/head | |
mkdir -p ${RUNNER_TEMP}/base | |
- name: Create dependency trees from ${{ github.base_ref }} | |
run: | | |
while read -r entry; do | |
IFS=';' read -r artifact path <<< ${entry} | |
mvn --quiet --non-recursive dependency:resolve -Dsort=true --file ${path} -DoutputFile=${RUNNER_TEMP}/base/${artifact} | |
done <<< "$(mvn -Dexec.executable='echo' -Dexec.args='${project.artifactId};${project.basedir}/pom.xml' exec:exec --quiet)" | |
# pull_request_target runs on "base" by default, so it's needed to checkout the PR to get the changes | |
- name: Checkout PR | |
uses: actions/checkout@v3 | |
with: | |
ref: "refs/pull/${{ github.event.number }}/merge" | |
- name: Build project | |
run: mvn -q clean install | |
- name: Create dependency trees from PR | |
run: | | |
while read -r entry; do | |
IFS=';' read -r artifact path <<< ${entry} | |
mvn --quiet --non-recursive dependency:resolve -Dsort=true --file ${path} -DoutputFile=${RUNNER_TEMP}/head/${artifact} | |
done <<< "$(mvn -Dexec.executable='echo' -Dexec.args='${project.artifactId};${project.basedir}/pom.xml' exec:exec --quiet)" | |
# Move the directories from $RUNNER_TEMP to the current dir, as the diff-action seems to be unable to read from there | |
- name: Move directories | |
run: | | |
mv ${RUNNER_TEMP}/head head | |
mv ${RUNNER_TEMP}/base base | |
- uses: tibdex/github-app-token@v1 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.TNB_APP_APP_ID }} | |
private_key: ${{ secrets.TNB_APP_PRIVATE_KEY }} | |
- uses: int128/diff-action@v1 | |
with: | |
base: base | |
head: head | |
comment-header: Dependency changes | |
token: ${{ steps.generate-token.outputs.token }} | |