From 99fc6289daab4526349935a6aeee277578a87f32 Mon Sep 17 00:00:00 2001 From: uazo <29201891+uazo@users.noreply.github.com> Date: Fri, 28 Oct 2022 07:36:23 -0800 Subject: [PATCH] Update check_git_apply.yaml --- .github/workflows/check_git_apply.yaml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/check_git_apply.yaml b/.github/workflows/check_git_apply.yaml index 22443f8..c93fbd3 100644 --- a/.github/workflows/check_git_apply.yaml +++ b/.github/workflows/check_git_apply.yaml @@ -21,15 +21,6 @@ jobs: get-git-apply: runs-on: ci - container: - image: uazo/build-deps:latest - env: - GITHUB_SHA: ${{ github.event.inputs.rtag }} - USELOCALIMAGE: true # CUSTOM RUNNER: permit use of local images - REMOVEDOCKERSUPPORT: false # CUSTOM RUNNER: remove sharing of docker socket - volumes: - - /tmp/proxy:/tmp/proxy - steps: - name: Prepare container @@ -37,6 +28,8 @@ jobs: sudo chown lg /etc/apt/apt.conf.d/proxy.conf sudo chown lg . + sudo iptables -D INPUT -p tcp -s localhost --dport 8118 -j ACCEPT + sudo iptables -D INPUT -p tcp --dport 8118 -j DROP sudo echo Acquire::http::Proxy \"http://172.18.0.1:8118\"\; >/etc/apt/apt.conf.d/proxy.conf export HTTPS_PROXY=http://172.18.0.1:8118 export HTTP_PROXY=http://172.18.0.1:8118