aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-09-05 07:56:28 +0000
committerTomas Mraz <tomas@openssl.org>2023-09-05 12:20:31 +0200
commitee60a4964ad403be86dcf7a8710691bf8dc0bc16 (patch)
tree564981f44204e1519c1381a64e744f0b47b0ae59
parenta632d534c73eeb3e3db8c7540d811194ef7c79ff (diff)
downloadopenssl-ee60a4964ad403be86dcf7a8710691bf8dc0bc16.tar.gz
Bump actions/checkout from 2 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> CLA: trivial Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21953) (cherry picked from commit d4231af60a8d04196b3b873c2fa8638daff36173)
-rw-r--r--.github/workflows/ci.yml36
-rw-r--r--.github/workflows/cross-compiles.yml2
-rw-r--r--.github/workflows/run-checker-ci.yml2
-rw-r--r--.github/workflows/run-checker-daily.yml2
-rw-r--r--.github/workflows/run-checker-merge.yml2
-rw-r--r--.github/workflows/windows.yml6
6 files changed, 25 insertions, 25 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8ccf2060e5..bcb02f5417 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
check_update:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: config
@@ -35,7 +35,7 @@ jobs:
check_docs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: ./config --strict-warnings && perl configdata.pm --dump
- name: make build_generated
@@ -49,7 +49,7 @@ jobs:
check-ansi:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: CPPFLAGS=-ansi ./config no-asm no-makedepend enable-buildtest-c++ --strict-warnings -D_DEFAULT_SOURCE && perl configdata.pm --dump
- name: make
@@ -58,7 +58,7 @@ jobs:
basic_gcc:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: CC=gcc ./config --strict-warnings && perl configdata.pm --dump
- name: make
@@ -69,7 +69,7 @@ jobs:
basic_clang:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: CC=clang ./config --strict-warnings && perl configdata.pm --dump
- name: make
@@ -80,7 +80,7 @@ jobs:
minimal:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: ./config --strict-warnings no-shared no-dso no-pic no-aria no-async no-autoload-config no-blake2 no-bf no-camellia no-cast no-chacha no-cmac no-cms no-comp no-ct no-des no-dgram no-dh no-dsa no-dtls no-ec2m no-engine no-filenames no-gost no-idea no-mdc2 no-md4 no-multiblock no-nextprotoneg no-ocsp no-ocb no-poly1305 no-psk no-rc2 no-rc4 no-rmd160 no-seed no-siphash no-sm2 no-sm3 no-sm4 no-srp no-srtp no-ssl3 no-ssl3-method no-ts no-ui-console no-whirlpool no-asm -DOPENSSL_NO_SECURE_MEMORY -DOPENSSL_SMALL_FOOTPRINT && perl configdata.pm --dump
- name: make
@@ -91,7 +91,7 @@ jobs:
no-deprecated:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: ./config --strict-warnings no-deprecated && perl configdata.pm --dump
- name: make
@@ -105,7 +105,7 @@ jobs:
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{matrix.os}}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: ./config --strict-warnings no-shared && perl configdata.pm --dump
- name: make
@@ -116,7 +116,7 @@ jobs:
address_ub_sanitizer:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: ./config --debug enable-asan enable-ubsan enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION && perl configdata.pm --dump
- name: make
@@ -130,7 +130,7 @@ jobs:
# memory_sanitizer:
# runs-on: ubuntu-latest
# steps:
-# - uses: actions/checkout@v3
+# - uses: actions/checkout@v4
# - name: config
# # --debug -O1 is to produce a debug build that runs in a reasonable amount of time
# run: CC=clang ./config --debug -O1 -fsanitize=memory -DOSSL_SANITIZE_MEMORY -fno-optimize-sibling-calls enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 && perl configdata.pm --dump
@@ -142,7 +142,7 @@ jobs:
threads_sanitizer:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: CC=clang ./config --strict-warnings -fsanitize=thread && perl configdata.pm --dump
- name: make
@@ -153,7 +153,7 @@ jobs:
enable_non-default_options:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: ./config --strict-warnings no-ec enable-ssl-trace enable-zlib enable-zlib-dynamic enable-crypto-mdebug enable-crypto-mdebug-backtrace enable-egd && perl configdata.pm --dump
- name: make
@@ -164,7 +164,7 @@ jobs:
legacy:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: ./config -Werror --debug no-afalgeng no-shared enable-crypto-mdebug enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method enable-weak-ssl-ciphers enable-zlib enable-ec_nistp_64_gcc_128 && perl configdata.pm --dump
- name: make
@@ -175,7 +175,7 @@ jobs:
buildtest:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: ./config no-asm no-makedepend enable-buildtest-c++ --strict-warnings -D_DEFAULT_SOURCE && perl configdata.pm --dump
- name: make
@@ -186,7 +186,7 @@ jobs:
out-of-tree_build:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: setup build dir
run: |
set -eux
@@ -210,7 +210,7 @@ jobs:
os: [ubuntu-latest, macos-latest ]
runs-on: ${{matrix.os}}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: extra preparations
run: |
mkdir ./build
@@ -231,7 +231,7 @@ jobs:
external-tests:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: recursive
- name: package installs
@@ -263,7 +263,7 @@ jobs:
PYTHON:
- 3.9
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure OpenSSL
diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml
index 1bd62da1b1..2a8970c863 100644
--- a/.github/workflows/cross-compiles.yml
+++ b/.github/workflows/cross-compiles.yml
@@ -125,7 +125,7 @@ jobs:
sudo apt-get -yq --force-yes install \
gcc-${{ matrix.platform.arch }} \
${{ matrix.platform.libs }}
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: |
diff --git a/.github/workflows/run-checker-ci.yml b/.github/workflows/run-checker-ci.yml
index 8a587bca3f..a8cfd03399 100644
--- a/.github/workflows/run-checker-ci.yml
+++ b/.github/workflows/run-checker-ci.yml
@@ -30,7 +30,7 @@ jobs:
]
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: CC=clang ./config --strict-warnings ${{ matrix.opt }}
- name: config dump
diff --git a/.github/workflows/run-checker-daily.yml b/.github/workflows/run-checker-daily.yml
index 43d1b0afaa..effc420cb6 100644
--- a/.github/workflows/run-checker-daily.yml
+++ b/.github/workflows/run-checker-daily.yml
@@ -117,7 +117,7 @@ jobs:
]
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: CC=clang ./config --strict-warnings ${{ matrix.opt }}
- name: config dump
diff --git a/.github/workflows/run-checker-merge.yml b/.github/workflows/run-checker-merge.yml
index b4887e6b03..4d701366ca 100644
--- a/.github/workflows/run-checker-merge.yml
+++ b/.github/workflows/run-checker-merge.yml
@@ -26,7 +26,7 @@ jobs:
]
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: config
run: CC=clang ./config --strict-warnings ${{ matrix.opt }}
- name: config dump
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 395f69764f..4ec4b64d1c 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -21,7 +21,7 @@ jobs:
config: VC-WIN32 --strict-warnings
runs-on: ${{matrix.os}}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.platform.arch }}
@@ -57,7 +57,7 @@ jobs:
- windows-2022
runs-on: ${{matrix.os}}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- uses: shogo82148/actions-setup-perl@v1
- name: prepare the build directory
@@ -81,7 +81,7 @@ jobs:
- windows-2022
runs-on: ${{matrix.os}}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- uses: shogo82148/actions-setup-perl@v1
- name: prepare the build directory