diff --git a/.github/workflows/check-arduino.yml b/.github/workflows/check-arduino.yml index 0d03f48..291351b 100644 --- a/.github/workflows/check-arduino.yml +++ b/.github/workflows/check-arduino.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Arduino Lint uses: arduino/arduino-lint-action@v1 diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index 45efc0f..9f06e53 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -60,12 +60,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 # it's necessary to checkout the platform before installing it so that the ArduinoCore-API dependency can be added - name: Checkout ArduinoCore-mbed # this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: arduino/ArduinoCore-mbed # the arduino/actions/libraries/compile-examples action will install the platform from this path @@ -73,7 +73,7 @@ jobs: - name: Checkout ArduinoCore-API # this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: arduino/ArduinoCore-API path: ${{ env.ARDUINOCORE_API_STAGING_PATH }} diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml index 4601442..76aadd7 100644 --- a/.github/workflows/spell-check.yml +++ b/.github/workflows/spell-check.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Spell check uses: codespell-project/actions-codespell@master