Codebase list capistrano / 0b4ae01
New upstream release. Debian Janitor 1 year, 3 months ago
4 changed file(s) with 24 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
3131 paths:
3232 - ./vendor/bundle
3333 key: bundle-v1-{{ arch }}-<< parameters.version >>-{{ checksum "Gemfile.lock" }}
34 update_ssh_client:
35 description: Install recent SSH client for compatibility with GitHub
36 steps:
37 - run:
38 name: Install OpenSSH 8.1p1 if necessary
39 command: |
40 if $(ssh -V 2>&1 | grep -q -v OpenSSH_8); then
41 apt-get update
42 apt-get install -y libssl-dev
43 mkdir ~/tempdownload
44 cd ~/tempdownload
45 wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.1p1.tar.gz
46 tar zxvf openssh-8.1p1.tar.gz
47 cd openssh-8.1p1 && ./configure --prefix=/usr && make ssh && make install
48 fi
3449
3550 jobs:
3651 danger:
5772 name: ruby
5873 version: << parameters.version >>
5974 steps:
75 - update_ssh_client
6076 - checkout
6177 - bundle_install:
6278 version: << parameters.version >>
0 capistrano (3.17.1-1) UNRELEASED; urgency=low
1
2 * New upstream release.
3
4 -- Debian Janitor <janitor@jelmer.uk> Wed, 11 Jan 2023 03:36:17 -0000
5
06 capistrano (3.17.0-1) unstable; urgency=medium
17
28 [ Debian Janitor ]
00 module Capistrano
1 VERSION = "3.17.0".freeze
1 VERSION = "3.17.1".freeze
22 end
1111 def default_config
1212 <<-CONFIG
1313 set :deploy_to, '#{deploy_to}'
14 set :repo_url, 'git://github.com/capistrano/capistrano.git'
14 set :repo_url, 'https://github.com/capistrano/capistrano.git'
1515 set :branch, 'master'
1616 set :ssh_options, { keys: "\#{ENV['HOME']}/.vagrant.d/insecure_private_key", auth_methods: ['publickey'] }
1717 server 'vagrant@localhost:2220', roles: %w{web app}