voxpupuli-release 5.0.2 → 5.1.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: 540b7eb6444d1bafdfe66518525b57e4807ab8f332eadc0c3fc1306977911e5f
4
- data.tar.gz: 0ba1493d768130b94378fe0e182828ea0bbb5182ca1eaee87207138108eea85a
3
+ metadata.gz: 1e6505604aaa9c704322e61b5b6c9c0583316654ed3c458862a93ea5921da5f6
4
+ data.tar.gz: f5b04d7bff640c7a5e89b0412b8563fe809661adaba34c7e516ed73a37e65894
5
5
  SHA512:
6
- metadata.gz: af0adf55adc63a82b6e639329280efa0b8fec18c3893798edd746d7e8bf842d1782195e6593444f19f383b572a50853c06e7709acdbd0ebd9fc0acc130285286
7
- data.tar.gz: 4ba3e9403fff87499b7377baa6d0a2ad359be28910c3179b3c02730a3b070d2af4965b356ba2a2686b131e43dc9763f1f2b50e72ef637bb8cdc7ec05d7070a2a
6
+ metadata.gz: d0c39f32a2d5e2fe4f47ab483d3258c3284642ef1adb0d84e83cb4f9a8cac1a1c54c5eeb079b9b37151d7c2d04035e5811082c77a5a834793a6d342e97bd57df
7
+ data.tar.gz: e464e9a7a295b10f3f74787cf30c5f9d0581873a1aa936d87d51d0f61f691e7fc22af5f6502a2a997c994f26a3d1a4a336f3cf0a8ee7180c8dbd5d46a0f56689
@@ -15,7 +15,7 @@ jobs:
15
15
  permissions:
16
16
  contents: write # clone repo and create release
17
17
  steps:
18
- - uses: actions/checkout@v5
18
+ - uses: actions/checkout@v6
19
19
  - name: Install Ruby
20
20
  uses: ruby/setup-ruby@v1
21
21
  with:
@@ -24,7 +24,7 @@ jobs:
24
24
  shell: bash
25
25
  run: gem build --verbose *.gemspec
26
26
  - name: Upload gem to GitHub cache
27
- uses: actions/upload-artifact@v5
27
+ uses: actions/upload-artifact@v6
28
28
  with:
29
29
  name: gem-artifact
30
30
  path: '*.gem'
@@ -34,12 +34,7 @@ jobs:
34
34
  shell: bash
35
35
  env:
36
36
  GH_TOKEN: ${{ github.token }}
37
- run: gh release create ${{ github.ref_name }} --generate-notes
38
- - name: Attach gem to GitHub Release
39
- shell: bash
40
- env:
41
- GH_TOKEN: ${{ github.token }}
42
- run: gh release upload ${{ github.ref_name }} *.gem
37
+ run: gh release create ${{ github.ref_name }} *.gem --generate-notes
43
38
 
44
39
  release-to-github:
45
40
  needs: build-release
@@ -49,7 +44,7 @@ jobs:
49
44
  packages: write # publish to rubygems.pkg.github.com
50
45
  steps:
51
46
  - name: Download gem from GitHub cache
52
- uses: actions/download-artifact@v6
47
+ uses: actions/download-artifact@v7
53
48
  with:
54
49
  name: gem-artifact
55
50
  - name: Setup GitHub packages access
@@ -69,7 +64,7 @@ jobs:
69
64
  id-token: write # rubygems.org authentication
70
65
  steps:
71
66
  - name: Download gem from GitHub cache
72
- uses: actions/download-artifact@v6
67
+ uses: actions/download-artifact@v7
73
68
  with:
74
69
  name: gem-artifact
75
70
  - uses: rubygems/configure-rubygems-credentials@v1.0.0
@@ -87,7 +82,7 @@ jobs:
87
82
  - release-to-rubygems
88
83
  steps:
89
84
  - name: Download gem from GitHub cache
90
- uses: actions/download-artifact@v6
85
+ uses: actions/download-artifact@v7
91
86
  with:
92
87
  name: gem-artifact
93
88
  - name: Install Ruby
@@ -19,7 +19,7 @@ jobs:
19
19
  outputs:
20
20
  ruby: ${{ steps.ruby.outputs.versions }}
21
21
  steps:
22
- - uses: actions/checkout@v5
22
+ - uses: actions/checkout@v6
23
23
  - name: Install Ruby ${{ matrix.ruby }}
24
24
  uses: ruby/setup-ruby@v1
25
25
  with:
@@ -28,7 +28,7 @@ jobs:
28
28
  - name: Run Rubocop
29
29
  run: bundle exec rake rubocop
30
30
  - id: ruby
31
- uses: voxpupuli/ruby-version@v1
31
+ uses: voxpupuli/ruby-version@v2
32
32
  test:
33
33
  needs: rubocop_and_matrix
34
34
  runs-on: ubuntu-24.04
@@ -38,7 +38,7 @@ jobs:
38
38
  ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
39
39
  name: Ruby ${{ matrix.ruby }}
40
40
  steps:
41
- - uses: actions/checkout@v5
41
+ - uses: actions/checkout@v6
42
42
  - name: Install Ruby ${{ matrix.ruby }}
43
43
  uses: ruby/setup-ruby@v1
44
44
  with:
data/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [v5.1.0](https://github.com/voxpupuli/voxpupuli-release/tree/v5.1.0) (2026-01-05)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v5.0.2...v5.1.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Add Ruby 4.0 suppprt [\#105](https://github.com/voxpupuli/voxpupuli-release/pull/105) ([dependabot[bot]](https://github.com/apps/dependabot))
12
+ - Create the GitHub release with files in one step [\#107](https://github.com/voxpupuli/voxpupuli-release/pull/107) ([bwitt](https://github.com/bwitt))
13
+
5
14
  ## [v5.0.2](https://github.com/voxpupuli/voxpupuli-release/tree/v5.0.2) (2025-11-15)
6
15
 
7
16
  [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v5.0.1...v5.0.2)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Voxpupuli
4
4
  module Release
5
- VERSION = '5.0.2'
5
+ VERSION = '5.1.0'
6
6
  end
7
7
  end
@@ -28,5 +28,5 @@ Gem::Specification.new do |s|
28
28
  # https://github.com/OpenVoxProject/puppet/issues/90
29
29
  s.add_dependency 'syslog', '~> 0.3.0'
30
30
 
31
- s.add_development_dependency 'voxpupuli-rubocop', '~> 5.0.0'
31
+ s.add_development_dependency 'voxpupuli-rubocop', '~> 5.1.0'
32
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: voxpupuli-release
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.2
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
@@ -123,14 +123,14 @@ dependencies:
123
123
  requirements:
124
124
  - - "~>"
125
125
  - !ruby/object:Gem::Version
126
- version: 5.0.0
126
+ version: 5.1.0
127
127
  type: :development
128
128
  prerelease: false
129
129
  version_requirements: !ruby/object:Gem::Requirement
130
130
  requirements:
131
131
  - - "~>"
132
132
  - !ruby/object:Gem::Version
133
- version: 5.0.0
133
+ version: 5.1.0
134
134
  email:
135
135
  - voxpupuli@groups.io
136
136
  executables: []
@@ -172,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
172
  - !ruby/object:Gem::Version
173
173
  version: '0'
174
174
  requirements: []
175
- rubygems_version: 3.6.9
175
+ rubygems_version: 4.0.3
176
176
  specification_version: 4
177
177
  summary: Helpers for deploying Vox Pupuli modules
178
178
  test_files: []