mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
f5b63963be
Signed-off-by: Alexei Dodon <adodon@cisco.com>
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
name: "TLS protocol scan"
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [main]
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
tls-check:
|
|
runs-on: ubuntu-latest
|
|
name: TLS check
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
cache: false
|
|
go-version: 1.20.x
|
|
- name: Install dependencies
|
|
run: |
|
|
cd $GITHUB_WORKSPACE
|
|
sudo apt-get update
|
|
sudo apt-get install -y apache2-utils openssl
|
|
mkdir -p test/data
|
|
cd test/data
|
|
../scripts/gen_certs.sh
|
|
htpasswd -bBn test test123 > htpasswd
|
|
- name: Check for TLS settings
|
|
continue-on-error: true
|
|
run: |
|
|
cd $GITHUB_WORKSPACE
|
|
make binary
|
|
bin/zot-linux-amd64 serve examples/config-tls.json &
|
|
sleep 5
|
|
curl -kv --tls-max 1.0 -0 https://localhost:8080/v2/
|
|
if [[ "$?" -eq 0 ]]; then echo "TLSv1.0 detected"; exit 1; fi
|
|
curl -kv --tls-max 1.1 -0 https://localhost:8080/v2/
|
|
if [[ "$?" -eq 0 ]]; then echo "TLSv1.1 detected"; exit 1; fi
|
|
curl -kv --tls-max 1.2 -0 https://localhost:8080/v2/
|
|
if [[ "$?" -ne 0 ]]; then echo "TLSv1.2 missing"; exit 1; fi
|