From 2bc11ce6442e11a019f3517e290c133ad7cfd779 Mon Sep 17 00:00:00 2001 From: Connor Duncan Date: Mon, 11 Mar 2024 02:10:25 +1300 Subject: [PATCH] Update node.js 16 actions to node.js 20 (#41) --- .github/workflows/push-master.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push-master.yml b/.github/workflows/push-master.yml index 80754ee..96e6f6e 100644 --- a/.github/workflows/push-master.yml +++ b/.github/workflows/push-master.yml @@ -11,9 +11,9 @@ jobs: PlatformIO: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache pip - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -25,7 +25,7 @@ jobs: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.x - name: Install PlatformIO