mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
e26013e1d2 Bumped version to 1.9.1 a70ad714b1 Set release date a1cad85347 Merge pull request #339 from maxmind/greg/conditional-ssize-max 25e42032b6 Define SSIZE_MAX conditionally on Windows 3ad33045df Merge pull request #337 from maxmind/greg/1.8.1 c796899e8f Bumped version to 1.9.0 d503b1d4c3 Update release notes 4d3d0a8e97 Merge pull request #336 from maxmind/greg/fix-search-tree-size-overflow 5fd2c21c4c Be more careful about overflows 0602d2e435 Fix overflow in search_tree_size e7367c2ff6 Merge pull request #334 from brimdata/windows-sa_family_t e695f1b596 Remove Windows sa_family_t typedef from public header 4a51c94f06 Merge pull request #333 from maxmind/dependabot/github_actions/github/codeql-action-3 4e59a81e5f Ignore Dependabot branches for CodeQL 79853e5041 Bump github/codeql-action from 2 to 3 972da7db28 Merge pull request #332 from fameowner99/fix_multiple_configuration_file_write_error 25a3b3c082 Fix file generation error on multiple CMake configurations reload 1e856637b7 Merge pull request #330 from maxmind/greg/update-libtap 88ce2360e4 Update libtap 4b9b710cbb Merge pull request #328 from maxmind/greg/release-1.8.0 git-subtree-dir: src/deps/src/libmaxminddb git-subtree-split: e26013e1d2b57eff0ed22b7364270358adb72205
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: "Code scanning - action"
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'dependabot/**'
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 7 * * 2'
|
|
|
|
jobs:
|
|
CodeQL-Build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
# We must fetch at least the immediate parents so that if this is
|
|
# a pull request then we can checkout the head.
|
|
fetch-depth: 2
|
|
submodules: true
|
|
|
|
# If this run was triggered by a pull request event, then checkout
|
|
# the head of the pull request instead of the merge commit.
|
|
- run: git checkout HEAD^2
|
|
if: ${{ github.event_name == 'pull_request' }}
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v3
|
|
|
|
- run: sudo apt install libipc-run3-perl libipc-system-simple-perl libfile-slurp-perl libfile-which-perl pandoc
|
|
- run: |
|
|
./bootstrap
|
|
./configure
|
|
make
|
|
make safedist
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v3
|