Fix Swarm pulling stale registry image by pinning service to local im… #130
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: "CodeQL" | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: "**" | |
| schedule: | |
| - cron: "0 6 * * 1" | |
| jobs: | |
| analyze: | |
| runs-on: "ubuntu-22.04" | |
| permissions: | |
| security-events: "write" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ["python"] | |
| steps: | |
| - uses: "actions/checkout@v4" | |
| - uses: "github/codeql-action/init@v3" | |
| with: | |
| languages: "${{ matrix.language }}" | |
| - uses: "github/codeql-action/analyze@v3" | |
| with: | |
| category: "/language:${{ matrix.language }}" |