0
1
Fork 0
mirror of https://github.com/actions/checkout synced 2024-06-17 14:28:20 +02: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