Skip to content

chore: bump actions/checkout from 4.1.7 to 4.2.0 #124

chore: bump actions/checkout from 4.1.7 to 4.2.0

chore: bump actions/checkout from 4.1.7 to 4.2.0 #124

Workflow file for this run

name: CodeQL
on:
push:
branches-ignore:
- 'dependabot/**'
paths-ignore:
- '**/*.md'
- '**/*.cff'
pull_request:
branches:
- '**'
paths-ignore:
- '**/*.md'
- '**/*.cff'
schedule:
- cron: '26 4 * * 1'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
codeql-analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
languages: ['python']
steps:
- name: Checkout the Repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Initialize CodeQL
uses: github/codeql-action/init@a57c67b89589d2d13d5ac85a9fc4679c7539f94c # v2.17.3
with:
languages: ${{ matrix.languages }}
queries: +security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@a57c67b89589d2d13d5ac85a9fc4679c7539f94c # v2.17.3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@a57c67b89589d2d13d5ac85a9fc4679c7539f94c # v2.17.3
slack-workflow-status:
if: always()
name: Slack Post Workflow Notification
needs:
- codeql-analyze
runs-on: ubuntu-latest
steps:
- name: Slack Workflow Notifications
if: ${{ github.event_name == 'schedule' && needs.codeql-analyze.result != 'success' }}
uses: Gamesight/slack-workflow-status@68bf00d0dbdbcb206c278399aa1ef6c14f74347a # v1.3.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
include_jobs: on-failure
include_commit_message: true