twiglet 3.4.1 → 3.4.8
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 +4 -4
- data/.github/workflows/codeql-analysis.yml +1 -1
- data/.github/workflows/dobby-actions.yml +4 -2
- data/.github/workflows/gem-publish.yml +8 -5
- data/.github/workflows/ruby.yml +3 -1
- data/.github/workflows/version-forget-me-not.yml +3 -0
- data/lib/twiglet/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: aa66002d342a4010bd45cfac5f9d379feedf444bb0b7da9183abd32c48eefb73
|
|
4
|
+
data.tar.gz: 8c09fc2eae272156fb47e8bece9ec1ddc8aa20e30ea582554a45b7471fca6e43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac5edd60f8444dce77ec6f5e0ee2c2d0cd7bc317944788ce4f8731564eadb89650f4fc25834bc6aedcdacd91f0f10ca9108b9bb0cfef70b2769a79ca6a344096
|
|
7
|
+
data.tar.gz: 59dc3907ede5435f2f1daa09f862c3d3ca7cd144cddf6e75f04b35698eb8a8262484c5d0705dd7c4ec6a99b4d8972a4d765c1bbf30956638043073f15e54e9ca
|
|
@@ -3,6 +3,8 @@ name: "Dobby action"
|
|
|
3
3
|
on:
|
|
4
4
|
issue_comment:
|
|
5
5
|
types: [created]
|
|
6
|
+
permissions:
|
|
7
|
+
contents: read
|
|
6
8
|
jobs:
|
|
7
9
|
pr_commented:
|
|
8
10
|
runs-on: ubuntu-20.04
|
|
@@ -11,7 +13,7 @@ jobs:
|
|
|
11
13
|
BUNDLE_WITHOUT: "development:test"
|
|
12
14
|
steps:
|
|
13
15
|
- name: Chekcout action
|
|
14
|
-
uses: actions/checkout@
|
|
16
|
+
uses: actions/checkout@v3
|
|
15
17
|
with:
|
|
16
18
|
repository: 'simplybusiness/dobby'
|
|
17
19
|
ref: 'v3.0.0'
|
|
@@ -20,7 +22,7 @@ jobs:
|
|
|
20
22
|
with:
|
|
21
23
|
bundler-cache: true
|
|
22
24
|
- name: Bump version
|
|
23
|
-
uses: simplybusiness/dobby@v3.0.
|
|
25
|
+
uses: simplybusiness/dobby@v3.0.1
|
|
24
26
|
env:
|
|
25
27
|
DOBBY_APP_ID: ${{ secrets.DOBBY_APP_ID }}
|
|
26
28
|
DOBBY_PRIVATE_KEY: ${{ secrets.DOBBY_PRIVATE_KEY }}
|
|
@@ -4,16 +4,19 @@ on:
|
|
|
4
4
|
push:
|
|
5
5
|
branches: [ master ]
|
|
6
6
|
|
|
7
|
+
permissions:
|
|
8
|
+
contents: write
|
|
9
|
+
|
|
7
10
|
jobs:
|
|
8
11
|
build:
|
|
9
12
|
name: Build and Publish
|
|
10
13
|
runs-on: ubuntu-latest
|
|
11
14
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
13
|
-
- name: Set up Ruby
|
|
14
|
-
uses:
|
|
15
|
+
- uses: actions/checkout@v3
|
|
16
|
+
- name: Set up Ruby
|
|
17
|
+
uses: ruby/setup-ruby@v1
|
|
15
18
|
with:
|
|
16
|
-
|
|
19
|
+
bundler-cache: true
|
|
17
20
|
- name: Publish to RubyGems
|
|
18
21
|
run: |
|
|
19
22
|
mkdir -p $HOME/.gem
|
|
@@ -28,7 +31,7 @@ jobs:
|
|
|
28
31
|
id: get-gem-version
|
|
29
32
|
run: echo "::set-output name=GEM_VERSION::$(bundle exec ruby -e 'puts Twiglet::VERSION')"
|
|
30
33
|
- name: Create Release
|
|
31
|
-
uses: actions/github-script@
|
|
34
|
+
uses: actions/github-script@v6
|
|
32
35
|
env:
|
|
33
36
|
GEM_VERSION: ${{ steps.get-gem-version.outputs.GEM_VERSION }}
|
|
34
37
|
with:
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -6,6 +6,8 @@ on:
|
|
|
6
6
|
|
|
7
7
|
env:
|
|
8
8
|
CI: true
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
9
11
|
|
|
10
12
|
jobs:
|
|
11
13
|
build:
|
|
@@ -19,7 +21,7 @@ jobs:
|
|
|
19
21
|
ruby-version: [2.6, 2.7, 3.0]
|
|
20
22
|
|
|
21
23
|
steps:
|
|
22
|
-
- uses: actions/checkout@
|
|
24
|
+
- uses: actions/checkout@v3
|
|
23
25
|
- name: Set up Ruby
|
|
24
26
|
uses: ruby/setup-ruby@v1
|
|
25
27
|
with:
|
data/lib/twiglet/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: twiglet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.4.
|
|
4
|
+
version: 3.4.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simply Business
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-03-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json-schema
|
|
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
145
145
|
- !ruby/object:Gem::Version
|
|
146
146
|
version: '0'
|
|
147
147
|
requirements: []
|
|
148
|
-
rubygems_version: 3.
|
|
148
|
+
rubygems_version: 3.0.3
|
|
149
149
|
signing_key:
|
|
150
150
|
specification_version: 4
|
|
151
151
|
summary: Twiglet
|