feat(oci): add oci cache #459
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: Analyze CodeQL | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| - "**.jpg" | |
| - "**.png" | |
| - "**.gif" | |
| - "**.svg" | |
| - "CODEOWNERS" | |
| schedule: | |
| # https://crontab.guru/#0_2_*_*_5 - at 10:00 A.M. UTC on Friday | |
| - cron: "0 10 * * 5" | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install tools | |
| uses: ./.github/actions/install-tools | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17 | |
| with: | |
| languages: go | |
| config-file: ./.github/codeql.yaml | |
| - run: make build | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17 | |
| with: | |
| category: "/language:go" |