Skip to content

Commit 53a0650

Browse files
committed
Remove insecure (-k) flags from curl in CI
1 parent b082c66 commit 53a0650

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: '3.x'
2222
- name: "Main Script"
2323
run: |
24-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
24+
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
2525
. ./prepare-and-run-flake8.sh ./pycparserext ./test
2626
2727
pytest:
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
- name: "Main Script"
4040
run: |
41-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
41+
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
4242
. ./build-and-test-py-project.sh
4343
4444
# vim: sw=4

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Python 3:
22
script:
33
- py_version=3
4-
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
4+
- curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
55
- ". ./build-and-test-py-project.sh"
66
tags:
77
- python3
@@ -13,7 +13,7 @@ Python 3:
1313

1414
Flake8:
1515
script:
16-
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
16+
- curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
1717
- ". ./prepare-and-run-flake8.sh pycparserext test"
1818
tags:
1919
- python3

0 commit comments

Comments
 (0)