Skip to content

Commit e319dc1

Browse files
authored
Merge branch 'main' into dependabot/github_actions/github-owned-actions-1746a96dba
2 parents 1c40f70 + bb0a720 commit e319dc1

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ on:
1616

1717
jobs:
1818
beman-submodule-check:
19-
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-submodule-check.yml@4d946e210ce2ee68ccd8607c8acccacf171830c5 # 1.7.1
19+
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-submodule-check.yml@b83fb68ccf4644e9185a2e016b7e6dfccc88a06c # 1.7.2
2020

2121
preset-test:
22-
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-preset-test.yml@4d946e210ce2ee68ccd8607c8acccacf171830c5 # 1.7.1
22+
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-preset-test.yml@b83fb68ccf4644e9185a2e016b7e6dfccc88a06c # 1.7.2
2323
with:
2424
matrix_config: >
2525
[
@@ -34,7 +34,7 @@ jobs:
3434
]
3535
3636
build-and-test:
37-
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-build-and-test.yml@4d946e210ce2ee68ccd8607c8acccacf171830c5 # 1.7.1
37+
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-build-and-test.yml@b83fb68ccf4644e9185a2e016b7e6dfccc88a06c # 1.7.2
3838
with:
3939
matrix_config: >
4040
{
@@ -147,4 +147,4 @@ jobs:
147147
permissions:
148148
contents: read
149149
issues: write
150-
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-create-issue-when-fault.yml@4d946e210ce2ee68ccd8607c8acccacf171830c5 # 1.7.1
150+
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-create-issue-when-fault.yml@b83fb68ccf4644e9185a2e016b7e6dfccc88a06c # 1.7.2

.github/workflows/docs-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
3434
steps:
3535
- name: Harden the runner (Audit all outbound calls)
36-
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
36+
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
3737
with:
3838
egress-policy: audit
3939

.github/workflows/pre-commit-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
checks: write
1616
issues: write
1717
pull-requests: write
18-
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-pre-commit.yml@4d946e210ce2ee68ccd8607c8acccacf171830c5 # ratchet:bemanproject/infra-workflows/.github/workflows/reusable-beman-pre-commit.yml@1.7.1
18+
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-pre-commit.yml@b83fb68ccf4644e9185a2e016b7e6dfccc88a06c # ratchet:bemanproject/infra-workflows/.github/workflows/reusable-beman-pre-commit.yml@1.7.2

.github/workflows/pre-commit-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
permissions:
1616
contents: write
1717
pull-requests: write
18-
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-update-pre-commit.yml@4d946e210ce2ee68ccd8607c8acccacf171830c5 # 1.7.1
18+
uses: bemanproject/infra-workflows/.github/workflows/reusable-beman-update-pre-commit.yml@b83fb68ccf4644e9185a2e016b7e6dfccc88a06c # 1.7.2
1919
secrets:
2020
APP_ID: ${{ secrets.AUTO_PR_BOT_APP_ID }}
2121
PRIVATE_KEY: ${{ secrets.AUTO_PR_BOT_PRIVATE_KEY }}

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ repos:
1313
# This brings in a portable version of clang-format.
1414
# See also: https://github.com/ssciwr/clang-format-wheel
1515
- repo: https://github.com/pre-commit/mirrors-clang-format
16-
rev: v22.1.4
16+
rev: v22.1.5
1717
hooks:
1818
- id: clang-format
1919
types_or: [c++, c]
2020

2121
# CMake linting and formatting
2222
- repo: https://github.com/BlankSpruce/gersemi-pre-commit
23-
rev: 0.27.2
23+
rev: 0.27.4
2424
hooks:
2525
- id: gersemi
2626
name: CMake linting
@@ -47,7 +47,7 @@ repos:
4747
4848
# Beman Standard checking via beman-tidy
4949
- repo: https://github.com/bemanproject/beman-tidy
50-
rev: v0.4.0
50+
rev: v0.4.1
5151
hooks:
5252
- id: beman-tidy
5353
args: [".", "--verbose", "--require-all"]

requirements-dev.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pre-commit
2-
clang-format==22.1.4
2+
clang-format==22.1.5
33
gcovr

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cfgv==3.5.0
22
# via pre-commit
3-
clang-format==22.1.4
3+
clang-format==22.1.5
44
# via -r requirements-dev.in
55
colorlog==6.10.1
66
# via gcovr

0 commit comments

Comments
 (0)