Merge pull request #328 from red6/dependabot/github_actions/step-secu… #255
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: JIB container publish | |
on: | |
push: | |
branches: | |
- master | |
release: | |
types: [ created ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 | |
with: | |
egress-policy: audit | |
- name: JIB container build and publish | |
uses: MathieuSoysal/jib-container-publish.yml@8df13913445f036bf93d0450669dbfbac2cac541 # main | |
with: | |
PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
java-version: 17 | |
module: cli | |
main-class: de.redsix.dmncheck.cli.Main |