Skip to content
Merged
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
28 changes: 28 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Dependabot configuration
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
# Disable all Dependabot activity for the doc/ npm manifest.
#
# These are documentation build tools only (Antora, AsciiDoc extensions)
# and are never deployed or exposed to untrusted input, so security
# alerts for transitive dependencies here are not actionable.
#
# NOTE: This config prevents Dependabot from opening PRs (both version
# updates and security fixes). However, GitHub's dependency graph may
# still create security *alerts* for vulnerabilities it detects in
# doc/package-lock.json. Those alerts should be dismissed as
# "tolerable risk" since this manifest is doc-tooling only.
- package-ecosystem: "npm"
# Path to the directory containing package.json / package-lock.json.
directory: "/doc"
schedule:
# The schema requires a schedule interval even when all
# updates are effectively disabled via the settings below.
interval: "weekly"
# Do not open any version-update PRs for this manifest.
open-pull-requests-limit: 0
# Ignore all npm dependencies so Dependabot does not open
# security-fix PRs for transitive vulnerabilities either.
ignore:
- dependency-name: "*"
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
matrix: ${{ steps.cpp-matrix.outputs.matrix }}
steps:
- name: Generate Test Matrix
uses: alandefreitas/cpp-actions/cpp-matrix@v1.9.0
uses: alandefreitas/cpp-actions/cpp-matrix@v1.9.3
id: cpp-matrix
with:
compilers: |
Expand Down Expand Up @@ -111,21 +111,21 @@ jobs:
uses: actions/checkout@v4

- name: Setup C++
uses: alandefreitas/cpp-actions/setup-cpp@v1.9.0
uses: alandefreitas/cpp-actions/setup-cpp@v1.9.3
id: setup-cpp
with:
compiler: ${{ matrix.compiler }}
version: ${{ matrix.version }}

- name: Install packages
if: matrix.install != ''
uses: alandefreitas/cpp-actions/package-install@v1.9.0
uses: alandefreitas/cpp-actions/package-install@v1.9.3
id: package-install
with:
apt-get: ${{ matrix.install }}

- name: Clone Boost
uses: alandefreitas/cpp-actions/boost-clone@v1.9.0
uses: alandefreitas/cpp-actions/boost-clone@v1.9.3
id: boost-clone
with:
branch: ${{ (github.ref_name == 'master' && github.ref_name) || 'develop' }}
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
corpus-

- name: CMake Workflow
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.0
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.3
if: matrix.is-no-factor-intermediary != 'true'
with:
source-dir: ../boost-root
Expand All @@ -226,7 +226,7 @@ jobs:
trace-commands: true

- name: CMake Integration Workflow
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.0
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.3
if: matrix.is-no-factor-intermediary != 'true'
with:
source-dir: ../boost-root/libs/${{ steps.patch.outputs.module }}/test/cmake_test
Expand All @@ -244,7 +244,7 @@ jobs:
trace-commands: true

- name: CMake Root Workflow
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.0
uses: alandefreitas/cpp-actions/cmake-workflow@v1.9.3
if: matrix.is-no-factor-intermediary != 'true'
with:
source-dir: .
Expand All @@ -263,7 +263,7 @@ jobs:
trace-commands: true

- name: B2 Workflow
uses: alandefreitas/cpp-actions/b2-workflow@v1.9.0
uses: alandefreitas/cpp-actions/b2-workflow@v1.9.3
env:
# Set flags via B2 options exclusively
CFLAGS: ''
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
warnings-as-errors: true

- name: FlameGraph
uses: alandefreitas/cpp-actions/flamegraph@v1.9.0
uses: alandefreitas/cpp-actions/flamegraph@v1.9.3
if: matrix.time-trace
with:
source-dir: ../boost-root/libs/url
Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:
fetch-depth: 100

- name: Changelog
uses: alandefreitas/cpp-actions/create-changelog@v1.9.0
uses: alandefreitas/cpp-actions/create-changelog@v1.9.3
with:
thank-non-regular: ${{ startsWith(github.ref, 'refs/tags/') }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -385,15 +385,15 @@ jobs:
shell: bash
steps:
- name: Install packages
uses: alandefreitas/cpp-actions/package-install@v1.9.0
uses: alandefreitas/cpp-actions/package-install@v1.9.3
with:
apt-get: git cmake

- name: Clone Boost.URL
uses: actions/checkout@v4

- name: Clone Boost
uses: alandefreitas/cpp-actions/boost-clone@v1.9.0
uses: alandefreitas/cpp-actions/boost-clone@v1.9.3
id: boost-clone
with:
branch: ${{ (github.ref_name == 'master' && github.ref_name) || 'develop' }}
Expand Down
Loading