From 44cb57a251d29f9600027535e897c2777fc783cd Mon Sep 17 00:00:00 2001 From: VeithMetro Date: Wed, 8 Jul 2026 08:54:16 +0200 Subject: [PATCH] Update each deprecated checkout call --- .../Build ThunderTools on Windows.yml | 20 +++++++++---------- .github/workflows/JsonGenerator.yml | 2 +- .github/workflows/LuaGenerator.yml | 8 ++++---- .github/workflows/PluginSkeletonGenerator.yml | 6 +++--- .../workflows/ProxyStubFunctionalTests.yml | 2 +- .github/workflows/ProxyStubGenerator.yml | 2 +- 6 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/Build ThunderTools on Windows.yml b/.github/workflows/Build ThunderTools on Windows.yml index f072befd..1d511150 100644 --- a/.github/workflows/Build ThunderTools on Windows.yml +++ b/.github/workflows/Build ThunderTools on Windows.yml @@ -46,7 +46,7 @@ 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 @@ -54,7 +54,7 @@ jobs: # ----- 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 @@ -70,7 +70,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 @@ -79,7 +79,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 @@ -95,7 +95,7 @@ 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 @@ -104,7 +104,7 @@ jobs: # ----- ThunderInterfaces ----- - name: Checkout ThunderInterfaces - default if: ${{ !contains(github.event.pull_request.body, '[DependsOn=ThunderInterfaces:') }} - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: ThunderOnWindows/ThunderInterfaces repository: ${{github.repository_owner}}/ThunderInterfaces @@ -120,7 +120,7 @@ jobs: - name: Checkout ThunderInterfaces - ${{steps.thunderinterfaces.outputs.first_match}} if: contains(github.event.pull_request.body, '[DependsOn=ThunderInterfaces:') - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: ThunderOnWindows/ThunderInterfaces repository: ${{github.repository_owner}}/ThunderInterfaces @@ -128,19 +128,19 @@ jobs: # ----- Other checkouts ----- - name: Checkout ThunderClientLibraries - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: ThunderOnWindows/ThunderClientLibraries repository: ${{github.repository_owner}}/ThunderClientLibraries - 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 diff --git a/.github/workflows/JsonGenerator.yml b/.github/workflows/JsonGenerator.yml index 81538b4b..8df9bec7 100644 --- a/.github/workflows/JsonGenerator.yml +++ b/.github/workflows/JsonGenerator.yml @@ -156,7 +156,7 @@ jobs: - name: Checkout gh-pages (baseline) if: github.event_name == 'pull_request' continue-on-error: true - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: gh-pages path: ghpages_baseline diff --git a/.github/workflows/LuaGenerator.yml b/.github/workflows/LuaGenerator.yml index 84e0fdbf..d0515009 100644 --- a/.github/workflows/LuaGenerator.yml +++ b/.github/workflows/LuaGenerator.yml @@ -51,18 +51,18 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout ThunderTools - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: ThunderTools - name: Checkout Thunder - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: rdkcentral/Thunder path: Thunder - name: Checkout ThunderInterfaces - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: rdkcentral/ThunderInterfaces path: ThunderInterfaces @@ -122,7 +122,7 @@ jobs: - name: Checkout gh-pages (baseline) if: github.event_name == 'pull_request' continue-on-error: true - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: gh-pages path: ghpages_baseline diff --git a/.github/workflows/PluginSkeletonGenerator.yml b/.github/workflows/PluginSkeletonGenerator.yml index a01d1bea..767a032e 100644 --- a/.github/workflows/PluginSkeletonGenerator.yml +++ b/.github/workflows/PluginSkeletonGenerator.yml @@ -164,10 +164,10 @@ jobs: steps: - name: Checkout this repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout ThunderInterfaces - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: rdkcentral/ThunderInterfaces path: ThunderInterfaces @@ -222,7 +222,7 @@ jobs: - name: Checkout gh-pages (baseline for PR diffs) if: github.event_name == 'pull_request' continue-on-error: true - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: gh-pages path: ghpages_baseline diff --git a/.github/workflows/ProxyStubFunctionalTests.yml b/.github/workflows/ProxyStubFunctionalTests.yml index 4e497346..486442ae 100644 --- a/.github/workflows/ProxyStubFunctionalTests.yml +++ b/.github/workflows/ProxyStubFunctionalTests.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Prepare apt (add i386 if needed) if: ${{ matrix.architecture == '32' }} diff --git a/.github/workflows/ProxyStubGenerator.yml b/.github/workflows/ProxyStubGenerator.yml index 0540a1a9..3a0036a1 100644 --- a/.github/workflows/ProxyStubGenerator.yml +++ b/.github/workflows/ProxyStubGenerator.yml @@ -164,7 +164,7 @@ jobs: - name: Checkout gh-pages (baseline) if: github.event_name == 'pull_request' continue-on-error: true - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: gh-pages path: ghpages_baseline