itamae-plugin-recipe-git_now 0.1.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +6 -20
- data/CHANGELOG.md +10 -1
- data/README.md +2 -2
- data/lib/itamae/plugin/recipe/git_now/default.rb +1 -1
- data/lib/itamae/plugin/recipe/git_now/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e841c1e0efed6bd5d6dae5a67029e7eaffea87eb261df02fa3dd36dc100483f
|
4
|
+
data.tar.gz: 1f7568eaf0aa9545951bdb79c9f35004789b7cfe26b6fd105518315a2b7fb0a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acd79e1bf36e228819df145fb01d8fca05b59226c330297c0c8c8cee4a44fa798eb14f323aebcddd18e811849980584bfbc5e9210e2fe676b20e5d8d48d814b0
|
7
|
+
data.tar.gz: fd2b14445a986ccc47e8b4491e48fa272baf9aec830e7a89e81afd19b7b9ed0e6bfc7648fb659d437d9c7daca88acae3bfa0066526fbcb52e279ad2bacbb61e1
|
data/.github/workflows/test.yml
CHANGED
@@ -12,9 +12,6 @@ on:
|
|
12
12
|
schedule:
|
13
13
|
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
14
14
|
|
15
|
-
env:
|
16
|
-
CI: "true"
|
17
|
-
|
18
15
|
jobs:
|
19
16
|
test:
|
20
17
|
runs-on: ubuntu-latest
|
@@ -24,7 +21,7 @@ jobs:
|
|
24
21
|
|
25
22
|
matrix:
|
26
23
|
ruby:
|
27
|
-
- 2.3
|
24
|
+
- "2.3"
|
28
25
|
image:
|
29
26
|
- centos:7
|
30
27
|
- centos:8
|
@@ -33,26 +30,15 @@ jobs:
|
|
33
30
|
- debian:buster
|
34
31
|
|
35
32
|
steps:
|
36
|
-
- uses: actions/checkout@
|
33
|
+
- uses: actions/checkout@v3
|
37
34
|
|
38
|
-
- uses:
|
35
|
+
- uses: ruby/setup-ruby@v1
|
39
36
|
with:
|
40
37
|
ruby-version: ${{ matrix.ruby }}
|
38
|
+
bundler-cache: true
|
39
|
+
cache-version: ${{ matrix.gemfile }}
|
41
40
|
|
42
|
-
-
|
43
|
-
uses: actions/cache@v1
|
44
|
-
id: cache_gem
|
45
|
-
with:
|
46
|
-
path: vendor/bundle
|
47
|
-
key: v1-gem-${{ runner.os }}-${{ matrix.ruby }}-${{ github.sha }}
|
48
|
-
restore-keys: |
|
49
|
-
v1-gem-${{ runner.os }}-${{ matrix.ruby }}-
|
50
|
-
|
51
|
-
- name: bundle update
|
52
|
-
run: |
|
53
|
-
set -xe
|
54
|
-
bundle config path vendor/bundle
|
55
|
-
bundle update --jobs $(nproc) --retry 3
|
41
|
+
- run: bundle update --jobs $(nproc) --retry 3
|
56
42
|
|
57
43
|
- name: Run Itamae
|
58
44
|
run: |
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## Unreleased
|
4
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v1.0.0...master)
|
5
|
+
|
6
|
+
## [v1.0.0](https://github.com/sue445/itamae-plugin-recipe-git_now/tree/v1.0.0) (2022/11/05)
|
7
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v0.1.2...v1.0.0)
|
8
|
+
|
9
|
+
* Change default schema to https
|
10
|
+
* https://github.com/sue445/itamae-plugin-recipe-git_now/pull/26
|
11
|
+
|
3
12
|
## [v0.1.2](https://github.com/sue445/itamae-plugin-recipe-git_now/tree/v0.1.2) (2021/11/20)
|
4
13
|
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v0.1.1...v0.1.2)
|
5
14
|
|
@@ -16,4 +25,4 @@
|
|
16
25
|
## [v0.1.0](https://github.com/sue445/itamae-plugin-recipe-git_now/tree/v0.1.0) (2015/12/17)
|
17
26
|
|
18
27
|
|
19
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
28
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/README.md
CHANGED
@@ -44,8 +44,8 @@ git_now:
|
|
44
44
|
# source dir (default: #{node[:git_now][:prefix]}/src)
|
45
45
|
src: /usr/local/src
|
46
46
|
|
47
|
-
# specify scheme to use in git clone (default:
|
48
|
-
scheme:
|
47
|
+
# specify scheme to use in git clone (default: https)
|
48
|
+
scheme: https
|
49
49
|
|
50
50
|
# install revision (default: HEAD)
|
51
51
|
revision: v0.1.1.0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itamae-plugin-recipe-git_now
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: itamae
|
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
125
|
- !ruby/object:Gem::Version
|
126
126
|
version: '0'
|
127
127
|
requirements: []
|
128
|
-
rubygems_version: 3.
|
128
|
+
rubygems_version: 3.3.7
|
129
129
|
signing_key:
|
130
130
|
specification_version: 4
|
131
131
|
summary: Itamae plugin to install git-now
|