twiglet 3.4.2 → 3.4.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a753447c39c6ee69b983d20b92bfdb335961d5c2f69fe729f89ce89ad9acfdc7
4
- data.tar.gz: 0ff1bb763f34f6ba55fe927a8f86d38bb1db1d45a4d25be65ee23980bd3fc353
3
+ metadata.gz: 65664ab480ca568c939561798c9a3b317ce30d9a5fb17562b3a37af581a907e2
4
+ data.tar.gz: 0cf41522b5763297f0835944bfbfa7b0de30402d25cdae59abdcc8c71b0f18cd
5
5
  SHA512:
6
- metadata.gz: cf6bb4c6072e5f3e45e4dade33e93253f8622d5613bbfff4bbb24555e2d55a198e731414084744408e1639d23dd82f31a3d5fbf908bd091c03e56135ddc76be5
7
- data.tar.gz: 8baa2e764f0d8fd7f3185bc0d343e60d8430a20f4acfe0af850e630e433f7b19790427604057150749f01408f67a0e251c1973d0bf930a2cc8a4f0583ab43115
6
+ metadata.gz: 33df11aa4c11ac1c7ff8cc34eb3cbd767a1cd3899316b22719ce590e66677d5fa8ae6bdaf2988bea053e559c440e43e975e480c55170acf1ba34635c6ea764dc
7
+ data.tar.gz: e4e1fde4a257a2f4defa20b6486ca0741de9328c18c917c940c63c623fc9e732cb6f24531feb58880ee18b52aac7a7d8795674462549861fd82e722bf090f352
@@ -38,7 +38,7 @@ jobs:
38
38
 
39
39
  steps:
40
40
  - name: Checkout repository
41
- uses: actions/checkout@v2
41
+ uses: actions/checkout@v3
42
42
 
43
43
  # Initializes the CodeQL tools for scanning.
44
44
  - name: Initialize CodeQL
@@ -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@v2
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.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,12 +4,15 @@ 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@v2
15
+ - uses: actions/checkout@v3
13
16
  - name: Set up Ruby
14
17
  uses: ruby/setup-ruby@v1
15
18
  with:
@@ -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@v5
34
+ uses: actions/github-script@v6
32
35
  env:
33
36
  GEM_VERSION: ${{ steps.get-gem-version.outputs.GEM_VERSION }}
34
37
  with:
@@ -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@v2
24
+ - uses: actions/checkout@v3
23
25
  - name: Set up Ruby
24
26
  uses: ruby/setup-ruby@v1
25
27
  with:
@@ -5,6 +5,9 @@ on:
5
5
  branches:
6
6
  - master
7
7
  types: [opened, synchronize]
8
+ permissions:
9
+ contents: read
10
+ statuses: write
8
11
  jobs:
9
12
  build:
10
13
  runs-on: ubuntu-18.04
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Twiglet: Ruby version
2
2
  Like a log, only smaller.
3
3
 
4
- This library provides a minimal JSON logging interface suitable for use in (micro)services. See the [RATIONALE](RATIONALE.md) for design rationale and an explantion of the Elastic Common Schema that we are using for log attribute naming.
4
+ This library provides a minimal JSON logging interface suitable for use in (micro)services. See the [RATIONALE](docs/RATIONALE.md) for design rationale and an explantion of the Elastic Common Schema that we are using for log attribute naming.
5
5
 
6
6
  See [Full docs](docs/index.md)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Twiglet
4
- VERSION = '3.4.2'
4
+ VERSION = '3.4.9'
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.4.2
4
+ version: 3.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simply Business
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2022-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json-schema