diff --git a/.github/workflows/build_client.yml b/.github/workflows/build_client.yml index 973bb21..29fa2be 100644 --- a/.github/workflows/build_client.yml +++ b/.github/workflows/build_client.yml @@ -35,7 +35,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.checkout-sha == null && github.sha || inputs.checkout-sha }} - name: Set up Python @@ -70,5 +70,5 @@ jobs: - name: Upload release artifacts uses: actions/upload-artifact@v4 with: - name: release-artifacts + name: ${{ matrix.name }}-release-artifacts path: client-${{ matrix.name }}.zip diff --git a/.github/workflows/build_firmware.yml b/.github/workflows/build_firmware.yml index ada5396..1ad8d09 100644 --- a/.github/workflows/build_firmware.yml +++ b/.github/workflows/build_firmware.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.checkout-sha == null && github.sha || inputs.checkout-sha }} fetch-depth: 0 @@ -54,7 +54,7 @@ jobs: device_type: [ultra, lite] steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.checkout-sha == null && github.sha || inputs.checkout-sha }} fetch-depth: 0 @@ -94,5 +94,5 @@ jobs: - name: Upload release artifacts uses: actions/upload-artifact@v4 with: - name: release-artifacts + name: ${{ matrix.device_type }}-release-artifacts path: firmware/objects/*.zip diff --git a/.github/workflows/on_push.yml b/.github/workflows/on_push.yml index 08c228e..115e62a 100644 --- a/.github/workflows/on_push.yml +++ b/.github/workflows/on_push.yml @@ -24,9 +24,9 @@ jobs: - client_pipeline steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download release artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: release-artifacts path: release-artifacts @@ -60,9 +60,9 @@ jobs: - client_pipeline steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download release artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: release-artifacts path: release-artifacts