1
0
mirror of https://githubfast.com/actions/checkout.git synced 2024-10-30 16:50:46 +00:00

Try disabling https_proxy while git installs.

This commit is contained in:
John Wesley Walker III 2024-02-17 03:43:47 +01:00 committed by GitHub
parent d5b8261d14
commit 2349742c16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -201,12 +201,14 @@ jobs:
https_proxy: http://squid-proxy:3128
steps:
- name: Install Git
env:
https_proxy: "" # Disable https_proxy for this single step
run: |
apt-get clean
apt-get upgrade
apt-get update
apt-get install software-properties-common
add-apt-repository ppa:git-core/ppa
# apt-get clean
# apt-get upgrade
# apt-get update
# apt-get install software-properties-common
# add-apt-repository ppa:git-core/ppa
apt-get update
apt-get install git