bard 0.61.0 → 0.62.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d24009e6972f214ff02cffed4b23dd3ff8f07f55c6cea8ca8d56e78d57793733
|
4
|
+
data.tar.gz: 56b93c510186793a22f86ad5774850cf68f4e267f02a18b1ece70cf1be3fd86a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50167a79d3331b5facaccaa4bb68c1426c1ffee6f8f49eeb44361d23239aac705365d0c99485146473ca33712a93a7ee57d6585db4e8f558f09928d8a8d79a60
|
7
|
+
data.tar.gz: 25dc69a864a834cb7624a6fdf6b5df017a3fc038db9fd0fb2815bb34ce334a584f49ffbb6c63b2d1f425fc1b71509b7a658f198674aff64796c4bc6fd86a85c7
|
@@ -0,0 +1,17 @@
|
|
1
|
+
version: 2
|
2
|
+
updates:
|
3
|
+
- package-ecosystem: "bundler"
|
4
|
+
directory: "/"
|
5
|
+
schedule:
|
6
|
+
interval: "weekly"
|
7
|
+
allow:
|
8
|
+
- dependency-type: "all"
|
9
|
+
rebase-strategy: "disabled"
|
10
|
+
versioning-strategy: "lockfile-only"
|
11
|
+
groups:
|
12
|
+
semver_updates:
|
13
|
+
applies-to: "version-updates"
|
14
|
+
update-types:
|
15
|
+
- "minor"
|
16
|
+
- "patch"
|
17
|
+
|
@@ -4,8 +4,6 @@ on:
|
|
4
4
|
workflow_dispatch:
|
5
5
|
inputs:
|
6
6
|
git-ref:
|
7
|
-
description: Git Ref
|
8
|
-
default: master
|
9
7
|
required: true
|
10
8
|
|
11
9
|
permissions:
|
@@ -14,7 +12,7 @@ permissions:
|
|
14
12
|
|
15
13
|
jobs:
|
16
14
|
test:
|
17
|
-
runs-on: ubuntu-
|
15
|
+
runs-on: ubuntu-22.04-16core
|
18
16
|
env:
|
19
17
|
RAILS_ENV: test
|
20
18
|
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
|
@@ -26,7 +24,7 @@ jobs:
|
|
26
24
|
- name: Checkout code
|
27
25
|
uses: actions/checkout@v3
|
28
26
|
with:
|
29
|
-
ref: ${{ github.event.inputs.git-ref }}
|
27
|
+
ref: ${{ github.event.inputs.git-ref || github.event.pull_request.head.sha }}
|
30
28
|
- name: Install Ruby and gems
|
31
29
|
uses: ruby/setup-ruby@v1
|
32
30
|
with:
|
@@ -38,7 +36,7 @@ jobs:
|
|
38
36
|
|
39
37
|
autodeploy-dependabot-prs:
|
40
38
|
needs: test
|
41
|
-
runs-on: ubuntu-
|
39
|
+
runs-on: ubuntu-22.04
|
42
40
|
if: github.actor == 'dependabot[bot]'
|
43
41
|
steps:
|
44
42
|
- name: Merge Dependabot PR
|
data/lib/bard/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Micah Geisel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -138,6 +138,7 @@ files:
|
|
138
138
|
- features/support/env.rb
|
139
139
|
- features/support/grit_ext.rb
|
140
140
|
- features/support/io.rb
|
141
|
+
- install_files/.github/dependabot.yml
|
141
142
|
- install_files/.github/workflows/cache-ci.yml
|
142
143
|
- install_files/.github/workflows/ci.yml
|
143
144
|
- install_files/apt_dependencies.rb
|