Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Archive test logs
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: nvidiadriver-e2e-test-logs
path: ./logs/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/precompiled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,21 +143,21 @@ jobs:
echo "DIST=$DIST" >> $GITHUB_ENV

- name: Upload base image as an artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: base-images-${{ matrix.driver_branch }}-${{ env.KERNEL_VERSION }}-${{ env.DIST }}
path: ./base-images-${{ matrix.driver_branch }}-${{ env.KERNEL_VERSION }}-${{ env.DIST }}.tar
retention-days: 1

- name: Upload build image as an artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: driver-images-${{ matrix.driver_branch }}-${{ env.KERNEL_VERSION }}-${{ env.DIST }}
path: ./driver-images-${{ matrix.driver_branch }}-${{ env.KERNEL_VERSION }}-${{ env.DIST }}.tar
retention-days: 1

- name: Upload kernel version as an artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kernel-version-${{ matrix.driver_branch }}-${{ env.KERNEL_VERSION }}-${{ env.DIST }}
path: ./kernel-version-${{ matrix.driver_branch }}-${{ env.KERNEL_VERSION }}-${{ env.DIST }}.tar
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
printf '%s\n' "${KERNEL_VERSIONS[@]}" | jq -R . | jq -s . > ./matrix_values_${{ matrix.dist }}_${{ matrix.lts_kernel }}.json

- name: Upload kernel matrix values as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: matrix-values-${{ matrix.dist }}-${{ matrix.lts_kernel }}
path: ./matrix_values_${{ matrix.dist }}_${{ matrix.lts_kernel }}.json
Expand Down Expand Up @@ -388,7 +388,7 @@ jobs:

- name: Archive test logs
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: nvidiadriver-Precompiled-e2e-test-logs
path: ./logs/
Expand Down