itamae-plugin-recipe-git_now 0.1.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62e4be8027da812ffa70068387403cea36b8b45877fd06f0d758c85fd571b18e
4
- data.tar.gz: 33416784317db9f4407a09f2b8984c053a0ca9f1b057a4121e9dd2d138c349b5
3
+ metadata.gz: 3e841c1e0efed6bd5d6dae5a67029e7eaffea87eb261df02fa3dd36dc100483f
4
+ data.tar.gz: 1f7568eaf0aa9545951bdb79c9f35004789b7cfe26b6fd105518315a2b7fb0a1
5
5
  SHA512:
6
- metadata.gz: 0aa5a104dc5521d80b2b574e23862b04d61c79762867ecca2e29f11804917276171d45410dd4148527759b75ea97569ba3dacb81423f50f28423f4ffe6016d5a
7
- data.tar.gz: b677815efee9b4682ffd385ecc8606e33019d435d2decde767b0e0f63b728e780bb20deea9f0052447bdb2eaac58b89b445c3bee2959361e7ff942481f76ab63
6
+ metadata.gz: acd79e1bf36e228819df145fb01d8fca05b59226c330297c0c8c8cee4a44fa798eb14f323aebcddd18e811849980584bfbc5e9210e2fe676b20e5d8d48d814b0
7
+ data.tar.gz: fd2b14445a986ccc47e8b4491e48fa272baf9aec830e7a89e81afd19b7b9ed0e6bfc7648fb659d437d9c7daca88acae3bfa0066526fbcb52e279ad2bacbb61e1
@@ -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@v2
33
+ - uses: actions/checkout@v3
37
34
 
38
- - uses: eregon/use-ruby-action@v1
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
- - name: Cache vendor/bundle
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: git)
48
- scheme: git
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
@@ -1,7 +1,7 @@
1
1
  node.reverse_merge!(
2
2
  git_now: {
3
3
  prefix: "/usr/local",
4
- scheme: "git",
4
+ scheme: "https",
5
5
  },
6
6
  )
7
7
 
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module GitNow
5
- VERSION = "0.1.2"
5
+ VERSION = "1.0.0"
6
6
  end
7
7
  end
8
8
  end
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.1.2
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: 2021-11-19 00:00:00.000000000 Z
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.2.22
128
+ rubygems_version: 3.3.7
129
129
  signing_key:
130
130
  specification_version: 4
131
131
  summary: Itamae plugin to install git-now