Switch everything from git:// to https://

Github removed support for the unencrypted Git protocol, see
https://github.blog/2021-09-01-improving-git-protocol-security-github/
master
Michael Prokop 3 years ago
parent 7105d5958e
commit 05f82bbf52

@ -20,7 +20,7 @@ sudo dpkg -i ruby-crack_*.deb ruby-httparty_*.deb ruby-jenkins_*.deb ruby-tho
Recipe provided by Michael Gebetsroither:
#+BEGIN_EXAMPLE
git clone git://github.com/gebi/rubyrrdtool.git
git clone https://github.com/gebi/rubyrrdtool.git
cd rubyrrdtool
ruby extconf.rb
make

@ -5,7 +5,7 @@
- project:
name: jdg-freight
repos: git://github.com/mika/jenkins-debian-glue.git
repos: https://github.com/mika/jenkins-debian-glue.git
jobs:
- '{name}-source'
- '{name}-binaries'

@ -5,7 +5,7 @@
- project:
name: jenkins-debian-glue
repos: git://github.com/mika/jenkins-debian-glue.git
repos: https://github.com/mika/jenkins-debian-glue.git
jobs:
- '{name}-source'
- '{name}-binaries'

@ -376,7 +376,7 @@ class jenkins::config {
<hudson.plugins.git.UserRemoteConfig>
<name></name>
<refspec></refspec>
<url>git://github.com/mika/jenkins-debian-glue.git</url>
<url>https://github.com/mika/jenkins-debian-glue.git</url>
</hudson.plugins.git.UserRemoteConfig>
</userRemoteConfigs>
<branches>

@ -10,7 +10,7 @@
# Ideas:
# * integrate within Jenkins plugin (using jruby)
# * integrate in Violations plugin (for further reporting options)
# git://github.com/jenkinsci/violations-plugin.git
# https://github.com/jenkinsci/violations-plugin.git
################################################################################
require 'shellwords'

Loading…
Cancel
Save