Skip to content

Commit 1e84437

Browse files
dependabot[bot]jeremypoulter
authored andcommitted
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 8ef0a50 commit 1e84437

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- uses: ammaraskar/gcc-problem-matcher@master
6060

61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262

6363
- name: Cache pip
6464
uses: actions/cache@v4

.github/workflows/build_gui.yml

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

2222
steps:
2323
- name: Checkout the repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
submodules: recursive
2727
ref: ${{ github.head_ref }}

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: run PlatformIO Dependabot
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: run PlatformIO Dependabot
2121
uses: peterus/platformio_dependabot@v1
2222
with:

.github/workflows/divert_sim.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,47 +22,47 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
path: OpenEVSE_WiFi
2828

29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
repository: JeremyPoulter/MicroDebug
3232
path: MicroDebug
3333

34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
repository: JeremyPoulter/MicroTasks
3737
path: MicroTasks
3838

39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
with:
4141
repository: JeremyPoulter/StreamSpy
4242
path: StreamSpy
4343

44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
with:
4646
repository: JeremyPoulter/ConfigJson
4747
path: ConfigJson
4848

49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
with:
5151
repository: bblanchon/ArduinoJson
5252
path: ArduinoJson
5353
ref: v6.20.1
5454

55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
with:
5757
repository: JeremyPoulter/OpenEVSE_Lib
5858
path: OpenEVSE_Lib
5959

60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v5
6161
with:
6262
repository: JeremyPoulter/EpoxyDuino
6363
path: EpoxyDuino
6464

65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
with:
6767
repository: JeremyPoulter/ESPAL
6868
path: ESPAL

.github/workflows/openapi_validate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
# Check out the repository
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
# Run Spectral
1919
- uses: stoplightio/spectral-action@latest

.github/workflows/release_validation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Pre-built GUI Validation
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
submodules: recursive
1818

@@ -76,7 +76,7 @@ jobs:
7676

7777
steps:
7878
### Check the version number in the code matches the tag number
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v5
8080

8181
- name: Set up Python
8282
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)