Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #717

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ jobs:
steps:
- uses: ammaraskar/gcc-problem-matcher@master

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Checkout GUI
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ matrix.gui.repo }}
path: ${{ matrix.gui.name }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/divert_sim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,47 +22,47 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: OpenEVSE_WiFi

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: JeremyPoulter/MicroDebug
path: MicroDebug

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: JeremyPoulter/MicroTasks
path: MicroTasks

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: JeremyPoulter/StreamSpy
path: StreamSpy

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: JeremyPoulter/ConfigJson
path: ConfigJson

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: bblanchon/ArduinoJson
path: ArduinoJson
ref: v6.20.1

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: JeremyPoulter/OpenEVSE_Lib
path: OpenEVSE_Lib

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: JeremyPoulter/EpoxyDuino
path: EpoxyDuino

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: JeremyPoulter/ESPAL
path: ESPAL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openapi_validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Check out the repository
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Run Spectral
- uses: stoplightio/spectral-action@latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Pre-built GUI Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:

steps:
### Check the version number in the code matches the tag number
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
Expand Down
Loading