mirror of
https://github.com/actions/checkout.git
synced 2025-03-31 05:20:06 +02:00
Try disabling https_proxy
while git installs.
This commit is contained in:
parent
d5b8261d14
commit
2349742c16
1 changed files with 7 additions and 5 deletions
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
@ -201,12 +201,14 @@ jobs:
|
||||||
https_proxy: http://squid-proxy:3128
|
https_proxy: http://squid-proxy:3128
|
||||||
steps:
|
steps:
|
||||||
- name: Install Git
|
- name: Install Git
|
||||||
|
env:
|
||||||
|
https_proxy: "" # Disable https_proxy for this single step
|
||||||
run: |
|
run: |
|
||||||
apt-get clean
|
# apt-get clean
|
||||||
apt-get upgrade
|
# apt-get upgrade
|
||||||
apt-get update
|
# apt-get update
|
||||||
apt-get install software-properties-common
|
# apt-get install software-properties-common
|
||||||
add-apt-repository ppa:git-core/ppa
|
# add-apt-repository ppa:git-core/ppa
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install git
|
apt-get install git
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue