Skip to content

Commit

Permalink
update codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
sujaykundu777 committed Jul 11, 2024
1 parent b595872 commit 380dca3
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,18 @@

name: "Jekyll CI"


# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
branches: [master]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches: [master]
# Triggers the workflow on push or pull request events but only for the main branch
schedule:
# Runs at 6am UTC every Monday
- cron: '0 6 * * 1'

- cron: "0 6 * * 1"

jobs:
# Check the Jekyll itself for errors and syntax
Expand All @@ -28,7 +26,7 @@ jobs:
# Check that the Jekyll can actually build
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build the site in the jekyll/builder container
run: |
docker run \
Expand All @@ -43,13 +41,13 @@ jobs:
# Check markdown files are markdown-lint compliant
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Lint markdown files with markdown-lint
uses: articulate/[email protected]
with:
# Includes some specific rules to ignore
config: .github/workflows/markdownlint-config.json
files: '_posts/**/*.md'
files: "_posts/**/*.md"
# Ignore the built website, might have some funky files
ignore: _site/
# Try to fix basic errors
Expand Down

0 comments on commit 380dca3

Please sign in to comment.