From 0773e355a7e3a91c24a7f86527c7d963eda5bc71 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Thu, 6 May 2021 15:10:45 -0400 Subject: [PATCH] update github actions xtensa cache id; fix a typo --- .github/workflows/build.yml | 2 +- shared-bindings/gamepadshift/GamePadShift.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 626e5f381b..63b3bbf6c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -506,7 +506,7 @@ jobs: id: idf-cache with: path: ${{ github.workspace }}/.idf_tools - key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/esp32s2/esp-idf/HEAD') }}-20210422 + key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/esp32s2/esp-idf/HEAD') }}-20210506 - name: Clone IDF submodules run: | (cd $IDF_PATH && git submodule update --init) diff --git a/shared-bindings/gamepadshift/GamePadShift.c b/shared-bindings/gamepadshift/GamePadShift.c index 17dbb63053..aba699b23f 100644 --- a/shared-bindings/gamepadshift/GamePadShift.c +++ b/shared-bindings/gamepadshift/GamePadShift.c @@ -42,7 +42,7 @@ //| The ``clock``, ``data`` and ``latch`` parameters are ``DigitalInOut`` //| objects connected to the shift register controlling the buttons. //| -//| They button presses are accumulated, until the ``get_pressed`` method +//| The button presses are accumulated, until the ``get_pressed`` method //| is called, at which point the button state is cleared, and the new //| button presses start to be recorded. //|