Skip to content

Commit f391bce

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d4948df commit f391bce

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: clang-format
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Run clang-format style check for C/C++
2222
uses: jidicula/clang-format-action@v4.16.0
2323
with:
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- name: Install dependencies
3434
run: |
3535
sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc
@@ -45,14 +45,14 @@ jobs:
4545
runs-on: ubuntu-latest
4646
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949
- uses: chartboost/ruff-action@v1
5050

5151
flake8:
5252
runs-on: ubuntu-latest
5353
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
- uses: actions/setup-python@v6
5757
with:
5858
python-version: "3.12"
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
6464
steps:
65-
- uses: actions/checkout@v5
65+
- uses: actions/checkout@v6
6666
- name: Setup Python
6767
uses: actions/setup-python@v6
6868
with:

.github/workflows/osxbinary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: macos-13
1717
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Install dependencies
2121
run: |
2222
brew install automake autoconf

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ['3.9', '3.13']
2222

2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- name: Set up Python ${{ matrix.python-version }}
2626
uses: actions/setup-python@v6
2727
with:
@@ -54,7 +54,7 @@ jobs:
5454
python-version: ['3.13']
5555

5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v6
5858
- name: Set up Python ${{ matrix.python-version }}
5959
uses: actions/setup-python@v6
6060
with:
@@ -77,7 +77,7 @@ jobs:
7777
python-version: ['3.13']
7878

7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v6
8181
- name: Set up Python ${{ matrix.python-version }}
8282
uses: actions/setup-python@v6
8383
with:
@@ -100,7 +100,7 @@ jobs:
100100
python-version: ['3.13']
101101

102102
steps:
103-
- uses: actions/checkout@v5
103+
- uses: actions/checkout@v6
104104
- name: Set up Python ${{ matrix.python-version }}
105105
uses: actions/setup-python@v6
106106
with:

.github/workflows/tools.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Install dependencies
2222
run: |
2323
sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: macos-13
4545
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
4646
steps:
47-
- uses: actions/checkout@v5
47+
- uses: actions/checkout@v6
4848
- name: Install dependencies
4949
run: brew install automake autoconf wxwidgets
5050
- run: aclocal
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: macos-14
6464
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767
- name: Install dependencies
6868
run: brew install automake autoconf wxwidgets
6969
- run: aclocal
@@ -85,7 +85,7 @@ jobs:
8585
run:
8686
shell: msys2 {0}
8787
steps:
88-
- uses: actions/checkout@v5
88+
- uses: actions/checkout@v6
8989
- uses: msys2/setup-msys2@v2
9090
with:
9191
install: mingw-w64-x86_64-toolchain make automake autoconf

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: windows-latest
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Set up Python
2222
uses: actions/setup-python@v6
2323
with:

0 commit comments

Comments
 (0)