diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c1fed8f97132..9e95f599988b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,7 +93,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@basic-gcc" path: artifacts.tar.gz @@ -115,7 +115,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@basic-clang" path: artifacts.tar.gz @@ -140,7 +140,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@self-hosted-${{ matrix.os }}" path: artifacts.tar.gz @@ -162,7 +162,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@minimal" path: artifacts.tar.gz @@ -184,7 +184,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@no-deprecated" path: artifacts.tar.gz @@ -206,7 +206,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@no-shared-ubuntu" path: artifacts.tar.gz @@ -233,7 +233,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@no-shared-${{ matrix.os }}" path: artifacts.tar.gz @@ -259,7 +259,7 @@ jobs: - name: make test run: .github/workflows/make-test OPENSSL_TEST_RAND_ORDER=0 TESTS="-test_fuzz* -test_ssl_* -test_sslapi -test_evp -test_cmp_http -test_verify -test_cms -test_store -test_enc -[01][0-9]" - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@non-caching" path: artifacts.tar.gz @@ -285,7 +285,7 @@ jobs: - name: make test run: .github/workflows/make-test OPENSSL_TEST_RAND_ORDER=0 - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@address_ub_sanitizer" path: artifacts.tar.gz @@ -311,7 +311,7 @@ jobs: - name: make test run: .github/workflows/make-test OPENSSL_TEST_RAND_ORDER=0 TESTS="test_fuzz*" - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@fuzz_tests" path: artifacts.tar.gz @@ -339,7 +339,7 @@ jobs: - name: make test run: .github/workflows/make-test OPENSSL_TEST_RAND_ORDER=0 - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@memory_sanitizer" path: artifacts.tar.gz @@ -365,7 +365,7 @@ jobs: - name: make test run: .github/workflows/make-test V=1 TESTS="test_threads test_internal_provider test_provfetch test_provider test_pbe test_evp_kdf test_pkcs12 test_store test_evp test_quic*" - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@threads_sanitizer" path: artifacts.tar.gz @@ -389,7 +389,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@enable_non-default_options" path: artifacts.tar.gz @@ -419,7 +419,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@full_featured" path: artifacts.tar.gz @@ -441,7 +441,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@no-legacy" path: artifacts.tar.gz @@ -463,7 +463,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@legacy" path: artifacts.tar.gz @@ -505,7 +505,7 @@ jobs: run: ../source/.github/workflows/make-test working-directory: ./build - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@out-of-readonly-source-and-install-ubuntu" path: build/artifacts.tar.gz @@ -550,7 +550,7 @@ jobs: run: ../source/.github/workflows/make-test working-directory: ./build - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "ci@out-of-readonly-source-and-install-${{ matrix.os }}" path: build/artifacts.tar.gz diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml index 0d0384c8e50f2..5e999e4550056 100644 --- a/.github/workflows/cross-compiles.yml +++ b/.github/workflows/cross-compiles.yml @@ -219,7 +219,7 @@ jobs: TESTS="test_evp*" \ QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }} - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: "cross-compiles@${{ matrix.platform.arch }}" path: artifacts.tar.gz diff --git a/.github/workflows/fips-checksums.yml b/.github/workflows/fips-checksums.yml index 9b0bec2a78f13..3b9cc5cbb8b25 100644 --- a/.github/workflows/fips-checksums.yml +++ b/.github/workflows/fips-checksums.yml @@ -69,7 +69,7 @@ jobs: - name: save PR number run: echo ${{ github.event.number }} > ./artifact/pr_num - name: save artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: fips_checksum path: artifact/ @@ -113,7 +113,7 @@ jobs: - name: save PR number run: echo ${{ github.event.number }} > ./artifact/pr_num - name: save artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: abidiff path: artifact/ diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8ff02cee2757e..fc74033cd096e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: fuzz-seconds: 600 dry-run: false - name: Upload Crash - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 if: failure() with: name: artifacts diff --git a/.github/workflows/provider-compatibility.yml b/.github/workflows/provider-compatibility.yml index 3a400e26ea8d6..3632d6e901bdd 100644 --- a/.github/workflows/provider-compatibility.yml +++ b/.github/workflows/provider-compatibility.yml @@ -93,7 +93,7 @@ jobs: -providers working-directory: ${{ matrix.release.dir }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v5 with: name: ${{ matrix.release.tgz }} path: ${{ matrix.release.tgz }} @@ -177,7 +177,7 @@ jobs: run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} working-directory: ${{ matrix.branch.dir }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v5 with: name: ${{ matrix.branch.tgz }} path: ${{ matrix.branch.tgz }} diff --git a/.github/workflows/xanitizer.yml b/.github/workflows/xanitizer.yml index 709d16c139bfa..9d52fa46b5d41 100644 --- a/.github/workflows/xanitizer.yml +++ b/.github/workflows/xanitizer.yml @@ -87,7 +87,7 @@ jobs: license: ${{ secrets.XANITIZER_LICENSE }} # Archiving the findings list reports - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v5 with: name: Xanitizer-Reports path: |