diff --git a/.github/workflows/platformio.yml b/.github/workflows/platformio.yml index 305d368..9873da9 100644 --- a/.github/workflows/platformio.yml +++ b/.github/workflows/platformio.yml @@ -10,19 +10,19 @@ jobs: steps: - uses: actions/checkout@v3 - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Cache PlatformIO - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 - name: Install PlatformIO run: | python -m pip install --upgrade pip @@ -30,4 +30,4 @@ jobs: - name: Install native environment run: pio pkg install -e native - name: Run PlatformIO - run: pio test -e native \ No newline at end of file + run: pio test -e native