Skip to content
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
18 changes: 9 additions & 9 deletions .github/workflows/Build ThunderClientLibraries on Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
name: Build type - ${{matrix.type}}${{matrix.version}}
steps:
- name: Checkout ThunderOnWindows
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows
repository: WebPlatformForEmbedded/ThunderOnWindows

# ----- Thunder -----
- name: Checkout Thunder - default
if: ${{ !contains(github.event.pull_request.body, '[DependsOn=Thunder:') }}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows/Thunder
repository: ${{github.repository_owner}}/Thunder
Expand All @@ -56,7 +56,7 @@ jobs:

- name: Checkout Thunder - ${{steps.thunder.outputs.first_match}}
if: contains(github.event.pull_request.body, '[DependsOn=Thunder:')
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows/Thunder
repository: ${{github.repository_owner}}/Thunder
Expand All @@ -65,7 +65,7 @@ jobs:
# ----- ThunderTools -----
- name: Checkout ThunderTools - default
if: ${{ !contains(github.event.pull_request.body, '[DependsOn=ThunderTools:') }}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows/ThunderTools
repository: ${{github.repository_owner}}/ThunderTools
Expand All @@ -81,33 +81,33 @@ jobs:

- name: Checkout ThunderTools - ${{steps.tools.outputs.first_match}}
if: contains(github.event.pull_request.body, '[DependsOn=ThunderTools:')
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows/ThunderTools
repository: ${{github.repository_owner}}/ThunderTools
ref: ${{steps.tools.outputs.first_match}}

# ----- Other checkouts -----
- name: Checkout ThunderClientLibraries
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows/ThunderClientLibraries
repository: ${{github.repository_owner}}/ThunderClientLibraries

- name: Checkout ThunderInterfaces
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows/ThunderInterfaces
repository: ${{github.repository_owner}}/ThunderInterfaces

- name: Checkout ThunderNanoServices
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows/ThunderNanoServices
repository: ${{github.repository_owner}}/ThunderNanoServices

- name: Checkout ThunderNanoServicesRDK
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderOnWindows/ThunderNanoServicesRDK
repository: WebPlatformForEmbedded/ThunderNanoServicesRDK
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linux build template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

# ----- Regex & checkout -----
- name: Checkout ThunderClientLibraries
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderClientLibraries
repository: ${{github.repository_owner}}/ThunderClientLibraries
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/MacOS build template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

# ----- Regex & checkout -----
- name: Checkout ThunderClientLibraries
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ThunderClientLibraries
repository: ${{github.repository_owner}}/ThunderClientLibraries
Expand Down
Loading