summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2024-05-15 16:42:15 +0700
committerGitHub <[email protected]>2024-05-15 16:42:15 +0700
commitcf532d14792411fd40ad3433fe0ce9959887ef4b (patch)
treea440d4f6cb2f9d1275dda5b22a98ecee742c3163 /.github
parent3c24ba3ff2eb5fdb4e214f668a25ed2038a847ad (diff)
parent50278211f4117079ce5eda396f68d802d9cda615 (diff)
Merge pull request #2646 from hathach/max3421-abort-xfer
Implement Max3421 hcd abort xfer
Diffstat (limited to '.github')
-rw-r--r--.github/actions/setup_toolchain/espressif/action.yml2
-rw-r--r--.github/workflows/codeql.yml6
-rw-r--r--.github/workflows/hil_test.yml2
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/actions/setup_toolchain/espressif/action.yml b/.github/actions/setup_toolchain/espressif/action.yml
index a4c6127c6..494b7910e 100644
--- a/.github/actions/setup_toolchain/espressif/action.yml
+++ b/.github/actions/setup_toolchain/espressif/action.yml
@@ -23,7 +23,7 @@ runs:
id: cache-toolchain-espressif
with:
path: ${{ steps.set-docker-image.outputs.DOCKER_IMAGE }}
- key: ${{ runner.os }}-${{ inputs.toolchain }}-${{ inputs.toolchain_url }}
+ key: ${{ inputs.toolchain }}-${{ inputs.toolchain_url }}
- name: Pull and Save Docker Image
if: steps.cache-toolchain-espressif.outputs.cache-hit != 'true'
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 1f7b60b9c..be4c2dd87 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -59,10 +59,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- - name: Install ARM GCC
- uses: carlosperate/arm-none-eabi-gcc-action@v1
+ - name: Setup Toolchain
+ uses: ./.github/actions/setup_toolchain
with:
- release: '11.2-2022.02'
+ toolchain: 'arm-gcc'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
diff --git a/.github/workflows/hil_test.yml b/.github/workflows/hil_test.yml
index adb5bf00e..39a9060a2 100644
--- a/.github/workflows/hil_test.yml
+++ b/.github/workflows/hil_test.yml
@@ -41,7 +41,7 @@ jobs:
echo "BOARDS_LIST=$BOARDS_LIST" >> $GITHUB_ENV
echo "BOARDS_LIST=$BOARDS_LIST" >> $GITHUB_OUTPUT
- - name: Setup ARM Toolchain
+ - name: Setup Toolchain
uses: ./.github/actions/setup_toolchain
with:
toolchain: 'arm-gcc'