chore(deps): update google-github-actions/release-please-action digest to e4dc86b #1098
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: "CodeQL" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
schedule: | |
- cron: "0 1 * * 0" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
jobs: | |
analyze: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: ./.github/actions/sdkman | |
- uses: ./.github/actions/konan | |
- uses: ./.github/actions/xcode-select | |
- uses: github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd # v3 | |
with: | |
config-file: ./.github/codeql/codeql-config.yml | |
- uses: ruby/setup-ruby@7d3497fd78c07c0d84ebafa58d8dac60cd1f0763 # v1.199.0 | |
with: | |
bundler-cache: true | |
- uses: bazelbuild/setup-bazelisk@b39c379c82683a5f25d34f0d062761f62693e0b2 # v3 | |
- run: make bootstrap-submodule | |
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 | |
with: | |
path: | | |
build/bazel | |
Framework/Tink.xcframework | |
key: v2-bazel-${{ runner.os }}-${{ hashFiles('.git/modules/TinkStub/HEAD') }} | |
- uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3 | |
id: framework | |
with: | |
files: "Framework/Tink.xcframework" | |
- uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # v3 | |
with: | |
gradle-home-cache-cleanup: true | |
arguments: assemble --scan | |
- uses: github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd # v3 |