update CSP to match commit a7f460f65e74266ecd6b3ab2ee47eda2330a146b #212
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: dockle | |
| on: | |
| push: | |
| branches: | |
| - fb_* | |
| - '*_fb_*' | |
| pull_request: | |
| branches: | |
| - develop | |
| - 'release*' | |
| jobs: | |
| dockle: | |
| name: dockle/xeol | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build an image from Dockerfile | |
| run: | | |
| cp labkeyServer-HelloWorld.jar labkeyServer.jar | |
| LABKEY_VERSION=HelloWorld make build | |
| - name: Run dockle on helloworld image | |
| uses: goodwithtech/dockle-action@v0.4.15 | |
| env: | |
| DOCKER_CONTENT_TRUST: 0 | |
| with: | |
| image: 'labkey/community:helloworld' | |
| format: 'list' | |
| exit-code: '1' | |
| exit-level: 'warn' | |
| ignore: 'CIS-DI-0005,CIS-DI-0009,CIS-DI-0010,DKL-DI-0001' | |
| - name: Run xeol on helloworld image | |
| uses: noqcks/xeol-action@v1.1.1 | |
| with: | |
| image: "labkey/community:helloworld" | |
| - name: Run xeol on dir | |
| uses: noqcks/xeol-action@v1.1.1 | |
| with: | |
| path: "." | |