Skip to content

Commit a31904e

Browse files
authored
Merge pull request #153 from steve-downey/main
Update dependencies
2 parents 0b64f39 + 2a102d8 commit a31904e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- {name: "Ubuntu GCC 13", tag: "gcc:13", toolchain: "gcc-13", cmake_args: "-G \"Ninja Multi-Config\" -DCMAKE_CONFIGURATION_TYPES=\"RelWithDebInfo;Asan\" -DCMAKE_PREFIX_PATH=\"./infra/cmake\" "}
3030
- {name: "Ubuntu GCC 12", tag: "gcc:12", toolchain: "gcc-12", cmake_args: "-G \"Ninja Multi-Config\" -DCMAKE_CONFIGURATION_TYPES=\"RelWithDebInfo;Asan\" -DCMAKE_PREFIX_PATH=\"./infra/cmake\" "}
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v6
3333
with:
3434
submodules: 'true'
3535
# If Clang 17, install a newer version of libc++ and libc++abi.
@@ -113,7 +113,7 @@ jobs:
113113
if: failure() && github.event_name == 'schedule'
114114
steps:
115115
# See https://github.com/cli/cli/issues/5075
116-
- uses: actions/checkout@v4
116+
- uses: actions/checkout@v6
117117
- name: Create issue
118118
run: |
119119
issue_num=$(gh issue list -s open -S "[SCHEDULED-BUILD] Build & Test failure" -L 1 --json number | jq 'if length == 0 then -1 else .[0].number end')

.github/workflows/pre-commit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: 3.13
2222

@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343

4444
# pull_request_target checkout the base of the repo
4545
# We need to checkout the actual pr to lint the changes.
@@ -49,14 +49,14 @@ jobs:
4949
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5050

5151
- name: Set up Python
52-
uses: actions/setup-python@v5
52+
uses: actions/setup-python@v6
5353
with:
5454
python-version: 3.13
5555

5656
# we only lint on the changed file in PR.
5757
- name: Get Changed Files
5858
id: changed-files
59-
uses: tj-actions/changed-files@v45
59+
uses: tj-actions/changed-files@v47
6060

6161
# See:
6262
# https://github.com/tj-actions/changed-files?tab=readme-ov-file#using-local-git-directory-

0 commit comments

Comments
 (0)