From b283bcb9752db095fff9671b0a04138774e15b10 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 1 Jul 2026 13:47:58 +0000 Subject: [PATCH] ci: bump checkout and upload-artifact to Node 24 actions Update actions/checkout v4 -> v5 and actions/upload-artifact v4 -> v6 to eliminate GitHub Actions Node.js 20 deprecation warnings on self-hosted runners. Co-authored-by: Alex Lennon --- .github/workflows/CI_github.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI_github.yml b/.github/workflows/CI_github.yml index bd050ec..cf1d7b6 100644 --- a/.github/workflows/CI_github.yml +++ b/.github/workflows/CI_github.yml @@ -37,7 +37,7 @@ jobs: BRANCH: ${{ matrix.branch }} steps: - name: Checkout meta-mono - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: clean: false path: ${{ matrix.branch }}/meta-mono @@ -115,12 +115,12 @@ jobs: export TERM=linux bitbake test-image-mono -c testimage - name: Store artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: test-image-mono-${{ matrix.branch }}-${{ matrix.mono_version }}-${{ matrix.dotnet_version }}-${{ github.sha }}-${{ matrix.arch }} path: ./${{ matrix.branch }}/build/tmp/deploy/images/qemu${{ matrix.arch }}/ - name: Store CVEs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: cve-summary-${{ matrix.branch }}-${{ matrix.mono_version }}-${{ matrix.dotnet_version }}-${{ github.sha }}-${{ matrix.arch }} path: ./${{ matrix.branch }}/build/tmp/log/cve/*.json