Skip to content

Commit 9926b38

Browse files
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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 fc34531 commit 9926b38

23 files changed

+29
-29
lines changed

.github/workflows/arduino.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
1717
runs-on: ubuntu-24.04
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- uses: arduino/arduino-lint-action@v2
2121
with:
2222
library-manager: update

.github/workflows/build_examples_with_cxx_compiler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build-examples:
1515
runs-on: ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Generate lv_conf.h
1919
run: |
2020
python ./scripts/generate_lv_conf.py \

.github/workflows/ccpp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
'OPTIONS_SDL']
2929
name: Build ${{ matrix.build_option }} - Ubuntu
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- uses: ammaraskar/gcc-problem-matcher@master
3333
- name: Setup Python
3434
uses: actions/setup-python@v6
@@ -60,7 +60,7 @@ jobs:
6060
- name: patch freetype vcpkg URL
6161
run: (Get-Content C:\vcpkg\ports\freetype\portfile.cmake) -replace 'freedesktop.org', 'com' | Out-File -encoding ASCII C:\vcpkg\ports\freetype\portfile.cmake
6262

63-
- uses: actions/checkout@v5
63+
- uses: actions/checkout@v6
6464

6565
- name: Install prerequisites
6666
run: scripts\install-prerequisites.bat
@@ -93,7 +93,7 @@ jobs:
9393
with:
9494
python-version: '3.12'
9595
- name: Clone LVGL as a Component
96-
uses: actions/checkout@v5
96+
uses: actions/checkout@v6
9797
with:
9898
path: components/lvgl
9999
- name: Copy IDF Project Example
@@ -113,7 +113,7 @@ jobs:
113113
'32bit build']
114114
name: Run tests with ${{ matrix.build_config }}
115115
steps:
116-
- uses: actions/checkout@v5
116+
- uses: actions/checkout@v6
117117
- uses: ammaraskar/gcc-problem-matcher@master
118118
- name: Setup Python
119119
uses: actions/setup-python@v6

.github/workflows/check_bom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
persist-credentials: false
2222
fetch-depth: 0

.github/workflows/check_conf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
persist-credentials: false
2121
fetch-depth: 0

.github/workflows/check_properties.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
persist-credentials: false
2121
fetch-depth: 0

.github/workflows/check_style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
persist-credentials: false
2121
fetch-depth: 0
2222
- name: Checkout astyle
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
repository: lvgl/astyle
2626
path: astyle

.github/workflows/check_templ.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
persist-credentials: false
2020
fetch-depth: 0

.github/workflows/compile_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-24.04
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
persist-credentials: false
2727
fetch-depth: 0

.github/workflows/esp_upload_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
upload_components:
1111
runs-on: ubuntu-24.04
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
submodules: "recursive"
1616

0 commit comments

Comments
 (0)