Skip to content

Commit 334b1ee

Browse files
dependabot[bot]yashi
authored andcommitted
build(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 200c918 commit 334b1ee

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.github/workflows/abi-checker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
sudo apt-get install abi-compliance-checker abi-dumper
2323
2424
- name: Checkout merged-base
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
ref: ${{ github.event.pull_request.base.ref }}
2828

@@ -32,7 +32,7 @@ jobs:
3232
abi-dumper build/libcsp.so -lver "merged-base" -o ../tmp/libcsp-merged-base.dump
3333
3434
- name: Checkout Current PR
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
ref: ${{github.event.pull_request.head.ref}}

.github/workflows/build-test-freertos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ jobs:
1414
sudo apt-get install ninja-build meson tree
1515
1616
- name: Checkout Test App
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
repository: libcsp/libcsp-freertos
2020

2121
- name: Checkout FreeRTOS Kernel
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
repository: FreeRTOS/FreeRTOS-Kernel
2525
path: freertos
2626

2727
- name: Checkout libcsp under subprojects
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
path: subprojects/libcsp
3131

.github/workflows/build-test-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
sudo apt-get install ninja-build ${{ matrix.buildsystem }}
3737
3838
- name: Checkout
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
- name: Build libcsp examples
4242
run: python3 examples/buildall.py --build-system=${{ matrix.buildsystem }}

.github/workflows/build-test-zephyr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python3 --version
3535
3636
- name: Checkout
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
path: libcsp-zephyr
4040
repository: yashi/libcsp-zephyr

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
sudo apt-get install ninja-build ${{ matrix.buildsystem }}
6262
6363
- name: Checkout
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565

6666
- name: Build
6767
env:

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Install codespell
1818
run: pip install codespell

.github/workflows/develop-build-sphinx-docs.yml

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

1818
steps:
1919
- name: Checkout the repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Setup packages on Linux
2323
if: ${{ runner.os == 'Linux' }}

.github/workflows/gitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pip3 install gitlint
1717
1818
- name: Checkout the code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
ref: ${{ github.event.pull_request.head.sha }}
2222
fetch-depth: 0

.github/workflows/linelint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Linelint
1717
uses: fernandrone/linelint@master

0 commit comments

Comments
 (0)