diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 84b11919c..9da8b03f6 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -22,7 +22,7 @@ jobs: - name: Cache Python modules id: cache-python - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -30,7 +30,7 @@ jobs: ${{ runner.os }}-pip- - name: Checkout source files - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -48,7 +48,7 @@ jobs: - name: Cache CCache id: ccache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .ccache key: ${{ runner.os }}-gcc-${{ matrix.gcc }}-${{ hashFiles('log.txt') }} @@ -70,7 +70,7 @@ jobs: (ls -lR firmware_*; ccache -s; arm-none-eabi-gcc -v) | tee log.txt - name: Upload test artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: firmware-dev-${{github.run_number}} path: | diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d9841156c..dae7e9e55 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -22,7 +22,7 @@ jobs: - name: Cache Python modules id: cache-python - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -30,7 +30,7 @@ jobs: ${{ runner.os }}-pip- - name: Checkout source files - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -46,7 +46,7 @@ jobs: - name: Cache CCache id: ccache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .ccache key: ${{ runner.os }}-gcc-${{ matrix.gcc }}-${{ hashFiles('log.txt') }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 69a4cdbd7..178d226c9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -16,7 +16,7 @@ jobs: release: ${{ matrix.gcc }} - name: Cache Python modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~\AppData\Local\pip\Cache key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -24,7 +24,7 @@ jobs: ${{ runner.os }}-pip- - name: Checkout source files - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -39,7 +39,7 @@ jobs: shell: cmd - name: Upload test artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: firmware-dev-${{github.run_number}} path: |