chore(deps): update tonistiigi/xx:latest docker digest to 923441d #777
Workflow file for this run
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 Scan | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: '30 1 * * 0' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
codeql-scan: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
name: CodeQL Scan | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') || github.event_name != 'push' }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install dependencies | |
run: sudo apt-get -qq update && sudo apt-get install -y libev-dev | |
- name: Install libassh | |
run: | | |
mkdir libassh | |
cd libassh | |
wget -q http://download.savannah.nongnu.org/releases/libassh/libassh-1.1.tar.gz -O - | tar -xz --strip-components=1 -f - | |
./configure --quiet --enable-silent-rules --disable-client --disable-examples --without-gcrypt --without-openssl --without-sodium --without-zlib --disable-dependency-tracking | |
make -j2 | |
sudo make install | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@babb554ede22fd5605947329c4d04d8e7a0b8155 # v3 | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@babb554ede22fd5605947329c4d04d8e7a0b8155 # v3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@babb554ede22fd5605947329c4d04d8e7a0b8155 # v3 |