twiglet 3.5.0 → 3.5.4

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: eaf4b42f0fd1e53803522582677f68f3a71835de59264853a8dac15bd385db7a
4
- data.tar.gz: 56905f74d551eadb29c6ffbd6a1aa7e8ccba23e614c2ab36172b44c96e815c40
3
+ metadata.gz: 7b8ba648b25202c2ee3c47bdd3885e879681ec1b4e3685edf97905b16a6caeb7
4
+ data.tar.gz: 78547321be656034d05e9dfacb29f913214a5ed540355d4050675e55b5302ac0
5
5
  SHA512:
6
- metadata.gz: 36a81212d48fbd1d88b5fac2a6920cc1c6b03b5d4af03fc69ae3ec21d0d9109fd1c5e1afb7c07099e85f712a28bc319f05ed74fa5bc4a1ff3383e9de9a571a42
7
- data.tar.gz: e727b067f3dce94ece0074108a704177ae101b3d78e13df801b147379f71041f19e3b5d519f60328783f27b9474ab3d8e9c96692da6c4144e94d8f9173c4b03e
6
+ metadata.gz: a9c8563acaa808a3491c386a5c57025089d83033cf35d38baf92b4abb2d9cb88ee52827155c03504c4d012d50df8acecb084b649239e558dbeca2817b016734d
7
+ data.tar.gz: 97d2797e525c3dd2dd19d9a6e5fde20226fa2675d40be1d3e7c2ba57dc6833dcb601ebe1e62f7c7827113f9a260cb642c40b3cfbc32bed0db9ba4b5d76f0dd61
@@ -42,7 +42,7 @@ jobs:
42
42
 
43
43
  # Initializes the CodeQL tools for scanning.
44
44
  - name: Initialize CodeQL
45
- uses: github/codeql-action/init@v1
45
+ uses: github/codeql-action/init@v2
46
46
  with:
47
47
  languages: ${{ matrix.language }}
48
48
  # If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
53
53
  # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
54
  # If this step fails, then you should remove it and run the build manually (see below)
55
55
  - name: Autobuild
56
- uses: github/codeql-action/autobuild@v1
56
+ uses: github/codeql-action/autobuild@v2
57
57
 
58
58
  # ℹ️ Command-line programs to run using the OS shell.
59
59
  # 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
67
67
  # make release
68
68
 
69
69
  - name: Perform CodeQL Analysis
70
- uses: github/codeql-action/analyze@v1
70
+ uses: github/codeql-action/analyze@v2
@@ -0,0 +1,17 @@
1
+ name: Automatically add new Issues to Silversmith's GitHub project board
2
+ # https://github.com/orgs/simplybusiness/projects/3
3
+ # New issues in this repository will be added to the board.
4
+ on:
5
+ issues:
6
+ types: [ opened, reopened ]
7
+
8
+ jobs:
9
+ track_issues:
10
+ uses: simplybusiness/github-action-reusable-workflows/.github/workflows/project-board.yaml@master
11
+ with:
12
+ pr-id: ${{ github.event.issue.node_id }}
13
+ project-number: 3
14
+ org: simplybusiness
15
+ actor: ${{ github.actor }}
16
+ secrets:
17
+ github-token: ${{ secrets.SILVERSMITHS_PROJECT_MANAGEMENT }}
@@ -18,7 +18,7 @@ jobs:
18
18
 
19
19
  strategy:
20
20
  matrix:
21
- ruby-version: [2.6, 2.7, 3.0]
21
+ ruby-version: [2.7, 3.0, 3.1]
22
22
 
23
23
  steps:
24
24
  - uses: actions/checkout@v3
@@ -13,7 +13,7 @@ jobs:
13
13
  runs-on: ubuntu-18.04
14
14
 
15
15
  steps:
16
- - uses: simplybusiness/version-forget-me-not@V2.1.1
16
+ - uses: simplybusiness/version-forget-me-not@v2.3.0
17
17
  env:
18
18
  ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
19
  VERSION_FILE_PATH: "lib/twiglet/version.rb"
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.5
1
+ 2.7.6
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Twiglet
4
- VERSION = '3.5.0'
4
+ VERSION = '3.5.4'
5
5
  end
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.5.0
4
+ version: 3.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simply Business
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-20 00:00:00.000000000 Z
11
+ date: 2022-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json-schema
@@ -92,6 +92,7 @@ files:
92
92
  - ".github/workflows/codeql-analysis.yml"
93
93
  - ".github/workflows/dobby-actions.yml"
94
94
  - ".github/workflows/gem-publish.yml"
95
+ - ".github/workflows/project-board.yml"
95
96
  - ".github/workflows/ruby.yml"
96
97
  - ".github/workflows/version-forget-me-not.yml"
97
98
  - ".gitignore"
@@ -145,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
146
  - !ruby/object:Gem::Version
146
147
  version: '0'
147
148
  requirements: []
148
- rubygems_version: 3.0.3
149
+ rubygems_version: 3.1.6
149
150
  signing_key:
150
151
  specification_version: 4
151
152
  summary: Twiglet