Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ updates:
prefix-development: chore
labels:
- "Dependencies"
cooldown:
default-days: 3
groups:
production-dependencies:
dependency-type: "production"
development-dependencies:
dependency-type: "development"
actions:
patterns: ["*"]

- package-ecosystem: "cargo"
directory: "/"
Expand All @@ -35,6 +35,8 @@ updates:
prefix-development: chore
labels:
- "Dependencies"
cooldown:
default-days: 3
groups:
production-dependencies:
dependency-type: "production"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,5 @@ jobs:
- name: "Lint Markdown"
if: steps.changes.outputs.src == 'true'
run: |
npm install -g markdownlint-cli
markdownlint '**.md' --ignore node_modules --disable MD013
npm ci
npx markdownlint '**.md' --ignore node_modules --disable MD013
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: "Run Coverage Report"
if: github.ref == 'refs/heads/main'
run: |
pip install ghastoolkit
pip install -r requirements.txt --require-hashes
./scripts/create-coverage.py report --markdown > $GITHUB_STEP_SUMMARY

- name: "Upload Coverage Report"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
pull-requests: write

steps:
- uses: actions/checkout@v6
- uses: actions/labeler@v6
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
set -e

pip install yq
pip install -r requirements.txt --require-hashes
current_version=$(cat .release.yml | yq -r ".version")

released_version=$(gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/:owner/:repo/releases/latest | jq -r ".tag_name")
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
id: get_version
run: |
set -e
pip install yq
pip install -r requirements.txt --require-hashes
echo "version=$(cat .release.yml | yq -r ".version")" >> "$GITHUB_ENV"
echo "release=true" >> "$GITHUB_ENV"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
pip install ghastoolkit
pip install -r requirements.txt --require-hashes
python ./.github/scripts/codeql.py version \
--bump "${{ github.event.inputs.bump }}"

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ql/test/**/*.actual
ql/test/**/CONSISTENCY
work
testing/
node_modules/

*.sarif
*.tar.gz
Expand Down
Loading
Loading