Skip to content

Commit 515eb50

Browse files
chore(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 cb85b35 commit 515eb50

18 files changed

+22
-22
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@v4
19+
- uses: actions/checkout@v5
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@v4
17+
- uses: actions/checkout@v5
1818
- name: Generate lv_conf.h
1919
run: |
2020
cp lv_conf_template.h lv_conf.h

.github/workflows/ccpp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
'OPTIONS_SDL']
3030
name: Build ${{ matrix.build_option }} - Ubuntu
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
- uses: ammaraskar/gcc-problem-matcher@master
3434
- name: Setup Python
3535
uses: actions/setup-python@v5
@@ -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@v4
63+
- uses: actions/checkout@v5
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@v4
96+
uses: actions/checkout@v5
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@v4
116+
- uses: actions/checkout@v5
117117
- uses: ammaraskar/gcc-problem-matcher@master
118118
- name: Setup Python
119119
uses: actions/setup-python@v5

.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@v4
19+
uses: actions/checkout@v5
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@v4
18+
uses: actions/checkout@v5
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@v4
18+
uses: actions/checkout@v5
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@v4
18+
uses: actions/checkout@v5
1919
with:
2020
persist-credentials: false
2121
fetch-depth: 0
2222
- name: Checkout astyle
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
repository: lvgl/astyle
2626
path: astyle

.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@v4
24+
uses: actions/checkout@v5
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@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
submodules: "recursive"
1616

.github/workflows/gen_json.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
name: Test API JSON
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Setup Python
2121
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)