From: Richard Levitte Date: Mon, 11 Nov 2024 10:45:44 +0000 (+0100) Subject: Upgrade action/{upload,download}-artifact to v4 X-Git-Tag: openssl-3.3.3~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=872cf437d20307456c25b9dd5e6504067a8f9ecf;p=thirdparty%2Fopenssl.git Upgrade action/{upload,download}-artifact to v4 Reviewed-by: Tomas Mraz Reviewed-by: Tom Cosgrove (Merged from https://github.com/openssl/openssl/pull/25922) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed217f04ac2..ab1721e9a96 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@v4 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@v4 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@v4 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@v4 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@v4 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@v4 with: name: "ci@no-shared-ubuntu" path: artifacts.tar.gz @@ -232,7 +232,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "ci@no-shared-${{ matrix.os }}" path: artifacts.tar.gz @@ -258,7 +258,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@v4 with: name: "ci@non-caching" path: artifacts.tar.gz @@ -284,7 +284,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@v4 with: name: "ci@address_ub_sanitizer" path: artifacts.tar.gz @@ -310,7 +310,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@v4 with: name: "ci@fuzz_tests" path: artifacts.tar.gz @@ -338,7 +338,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@v4 with: name: "ci@memory_sanitizer" path: artifacts.tar.gz @@ -364,7 +364,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@v4 with: name: "ci@threads_sanitizer" path: artifacts.tar.gz @@ -388,7 +388,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "ci@enable_non-default_options" path: artifacts.tar.gz @@ -418,7 +418,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "ci@full_featured" path: artifacts.tar.gz @@ -440,7 +440,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "ci@no-legacy" path: artifacts.tar.gz @@ -462,7 +462,7 @@ jobs: - name: make test run: .github/workflows/make-test - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "ci@legacy" path: artifacts.tar.gz @@ -504,7 +504,7 @@ jobs: run: ../source/.github/workflows/make-test working-directory: ./build - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "ci@out-of-readonly-source-and-install-ubuntu" path: build/artifacts.tar.gz @@ -548,7 +548,7 @@ jobs: run: ../source/.github/workflows/make-test working-directory: ./build - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 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 da13a02a799..1e1f4c2e04d 100644 --- a/.github/workflows/cross-compiles.yml +++ b/.github/workflows/cross-compiles.yml @@ -217,7 +217,7 @@ jobs: TESTS="test_evp*" \ QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }} - name: save artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 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 1ea3195fc75..d286d78cb9f 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@v4 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@v4 with: name: abidiff path: artifact/ diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1214641901e..06686a9f480 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@v4 if: failure() with: name: artifacts