itamae-plugin-recipe-consul 0.1.6 → 0.1.7

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: 11f609d68c20e8cf1006e6b93a85907d686de0fc3f4be94a66739044ae0a5f08
4
- data.tar.gz: 763dcc6c9b8a3f441621d7e38921d6aefc099640daf1d2b166912acc50374d02
3
+ metadata.gz: ce3e781da1622674a35967431416356ca2e1ca54cf8f45675464dbf6123b5130
4
+ data.tar.gz: 54905c283e2a4a0c228979cc5811610060df1a869687d43525e835dcdada277b
5
5
  SHA512:
6
- metadata.gz: 538a6b5a5920831e60053fcbfe28366ccb921f9d242546e1e89e2b5d9f614d3a56eb753222bcce350693b6442c212b1a7e80647b03739b3bc38f827e225eb69d
7
- data.tar.gz: 661d838fc35315ba09e5490056d53ec1ac5de141f65fca0c00a5f427cdbbc399b91e7da3cf17e4d260e9977d29e628ed2a9d0c73cf16d2b250265663806c8526
6
+ metadata.gz: '0590a9765f30142749e38073a680fde4c43fc851a6f71c439500882df71f3e41ef3b9770ac150951858ea211fd8f6054e5b0dc779d0cb82498bd66cbf20fc0bf'
7
+ data.tar.gz: 339a6e179695e3b7afe950ac99f7718ec1dcc730db1ab8c7f1d7cfe4c1f7a67f5c3ec0921f3a7b626e6f285c53cfb83d16a0fdb7bda77582a4cd433b78522964
@@ -2,11 +2,19 @@
2
2
  version: 2
3
3
 
4
4
  updates:
5
+ ###########################################################
6
+ # NOTE: following sections are auto generated. DO NOT EDIT!
7
+ ###########################################################
5
8
  - package-ecosystem: github-actions
6
9
  directory: /
7
10
  schedule:
8
- interval: weekly
9
- cooldown:
10
- default-days: 7
11
+ interval: monthly
12
+ time: "05:00"
13
+ timezone: Asia/Tokyo
11
14
  assignees:
12
15
  - sue445
16
+ cooldown:
17
+ default-days: 7
18
+ exclude:
19
+ - ruby/setup-ruby
20
+ ###########################################################
@@ -0,0 +1,31 @@
1
+ # ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
2
+
3
+ changelog:
4
+ exclude:
5
+ labels:
6
+ - chore
7
+
8
+ categories:
9
+ - title: ":bomb: Breaking Changes"
10
+ labels:
11
+ - breaking change
12
+
13
+ - title: ":lock: Security Fix"
14
+ labels:
15
+ - security
16
+
17
+ - title: ":rocket: Features"
18
+ labels:
19
+ - enhancement
20
+
21
+ - title: ":bug: Bug Fixes"
22
+ labels:
23
+ - bug
24
+
25
+ - title: ":dependabot: Dependency updates"
26
+ labels:
27
+ - dependencies
28
+
29
+ - title: ":pencil: Other Changes"
30
+ labels:
31
+ - "*"
@@ -0,0 +1,28 @@
1
+ name: dependabot-manager
2
+
3
+ on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - synchronize # PR branch is rebased
8
+
9
+ jobs:
10
+ dependabot-auto-merge:
11
+ uses: sue445/workflows/.github/workflows/dependabot-auto-merge.yml@main
12
+ with:
13
+ repo-name: sue445/itamae-plugin-recipe-consul
14
+ secrets:
15
+ # TODO: Set secrets to Dependabot secrets
16
+ app-id: ${{ secrets.GH_APP_ID }}
17
+ private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
18
+ slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
19
+
20
+ dependabot-security-alert:
21
+ uses: sue445/workflows/.github/workflows/dependabot-security-alert.yml@main
22
+ with:
23
+ repo-name: sue445/itamae-plugin-recipe-consul
24
+ secrets:
25
+ # TODO: Set secrets to Dependabot secrets
26
+ app-id: ${{ secrets.GH_APP_ID }}
27
+ private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
28
+ slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
@@ -5,37 +5,10 @@ on:
5
5
 
6
6
  jobs:
7
7
  release:
8
- if: github.repository == 'sue445/itamae-plugin-recipe-consul'
9
- runs-on: ubuntu-latest
10
-
11
- environment:
12
- name: rubygems.org
13
- url: https://rubygems.org/gems/itamae-plugin-recipe-consul
14
-
8
+ uses: sue445/workflows/.github/workflows/release_gem.yml@main
9
+ with:
10
+ repo-name: sue445/itamae-plugin-recipe-consul
11
+ gem-name: itamae-plugin-recipe-consul
15
12
  permissions:
16
13
  contents: write
17
14
  id-token: write
18
-
19
- steps:
20
- - name: Harden Runner
21
- uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
22
- with:
23
- egress-policy: audit
24
-
25
- - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
26
-
27
- - name: Set up Ruby
28
- uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
29
- with:
30
- bundler-cache: true
31
- ruby-version: ruby
32
-
33
- - name: Publish to RubyGems
34
- uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
35
-
36
- - name: Create GitHub release
37
- run: |
38
- tag_name="$(git describe --tags --abbrev=0)"
39
- gh release create "${tag_name}" --verify-tag --generate-notes
40
- env:
41
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -27,9 +27,9 @@ jobs:
27
27
  - debian:bookworm
28
28
 
29
29
  steps:
30
- - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
30
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
31
31
 
32
- - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
32
+ - uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
33
33
  with:
34
34
  ruby-version: ${{ matrix.ruby }}
35
35
  bundler-cache: true
@@ -63,7 +63,7 @@ jobs:
63
63
  DOCKER_CONTAINER: container-with-service
64
64
 
65
65
  - name: Slack Notification (not success)
66
- uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
66
+ uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
67
67
  if: "! success()"
68
68
  continue-on-error: true
69
69
  with:
@@ -71,17 +71,16 @@ jobs:
71
71
  webhook-url: ${{ secrets.SLACK_WEBHOOK }}
72
72
  matrix: ${{ toJson(matrix) }}
73
73
 
74
- notify:
74
+ all-pass:
75
+ if: always()
76
+
75
77
  needs:
76
78
  - test
77
79
 
78
- runs-on: ubuntu-latest
80
+ runs-on: ubuntu-slim
79
81
 
80
82
  steps:
81
- - name: Slack Notification (success)
82
- uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
83
- if: always()
84
- continue-on-error: true
83
+ - name: check dependent jobs
84
+ uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
85
85
  with:
86
- status: ${{ job.status }}
87
- webhook-url: ${{ secrets.SLACK_WEBHOOK }}
86
+ jobs: ${{ toJSON(needs) }}
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Change Log
2
2
  ## Unreleased
3
- [full changelog](http://github.com/sue445/itamae-plugin-recipe-consul/compare/v0.1.6...master)
3
+ [full changelog](http://github.com/sue445/itamae-plugin-recipe-consul/compare/v0.1.7...master)
4
+
5
+ ## [v0.1.7](https://github.com/sue445/itamae-plugin-recipe-consul/releases/tag/v0.1.7) (2026-08-23)
6
+ [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-consul/compare/v0.1.6...v0.1.7)
7
+
8
+ * Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
9
+ * https://github.com/sue445/itamae-plugin-recipe-consul/pull/82
4
10
 
5
11
  ## [v0.1.6](https://github.com/sue445/itamae-plugin-recipe-consul/releases/tag/v0.1.6) (2025-11-29)
6
12
 
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Consul
5
- VERSION = "0.1.6"
5
+ VERSION = "0.1.7"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-consul
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
@@ -87,6 +87,8 @@ extensions: []
87
87
  extra_rdoc_files: []
88
88
  files:
89
89
  - ".github/dependabot.yml"
90
+ - ".github/release.yml"
91
+ - ".github/workflows/dependabot-manager.yml"
90
92
  - ".github/workflows/release_gem.yml"
91
93
  - ".github/workflows/test.yml"
92
94
  - ".gitignore"
@@ -135,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
137
  - !ruby/object:Gem::Version
136
138
  version: '0'
137
139
  requirements: []
138
- rubygems_version: 3.6.7
140
+ rubygems_version: 4.0.16
139
141
  specification_version: 4
140
142
  summary: Itamae plugin to install Consul with init scripts
141
143
  test_files: []