vagrant-vyos 1.1.9 → 1.1.10
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/dependabot.yml +15 -0
- data/.github/workflows/release.yml +6 -2
- data/.github/workflows/test.yml +1 -2
- data/CHANGELOG.md +8 -0
- data/lib/vagrant-vyos/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1f468dfa368a607a6547f2163837c166f84d370af5fd0e555179d6cf26198f0
|
4
|
+
data.tar.gz: f215bef255dc8357390ca87fde71ef92326c92811986d89b94a98c5630915bc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 345a58b5004c7f11484aabc160672543d954ffd125acb5b073672ebe58d6703975607f3315033ab419727727540d2b96735c2d39f34a45498e64ca209c86df6a
|
7
|
+
data.tar.gz: 6a8ab0be8ceb07bf998d83fd544140349baee763b1dfbe1d989818842ad13f4c8c79e270a781cae39c5f8e5cbfa1b5c3d2096ffdbf441d07cc48f42ea8b2d566
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
3
|
+
# Please see the documentation for all configuration options:
|
4
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
5
|
+
|
6
|
+
version: 2
|
7
|
+
updates:
|
8
|
+
- package-ecosystem: "bundler" # See documentation for possible values
|
9
|
+
directory: "/" # Location of package manifests
|
10
|
+
schedule:
|
11
|
+
interval: "daily"
|
12
|
+
commit-message:
|
13
|
+
prefix: fix
|
14
|
+
prefix-development: chore
|
15
|
+
include: scope
|
@@ -8,10 +8,12 @@ on:
|
|
8
8
|
jobs:
|
9
9
|
release:
|
10
10
|
runs-on: ubuntu-latest
|
11
|
+
|
11
12
|
steps:
|
12
13
|
- uses: GoogleCloudPlatform/release-please-action@v2
|
13
14
|
id: release
|
14
15
|
with:
|
16
|
+
token: ${{ secrets.GH_TOKEN }}
|
15
17
|
release-type: ruby
|
16
18
|
version-file: lib/vagrant-vyos/version.rb
|
17
19
|
|
@@ -22,11 +24,13 @@ jobs:
|
|
22
24
|
uses: ruby/setup-ruby@v1
|
23
25
|
with:
|
24
26
|
ruby-version: 2.6
|
25
|
-
bundler-cache: true
|
26
27
|
if: ${{ steps.release.outputs.release_created }}
|
27
28
|
|
28
29
|
- name: Build
|
29
|
-
run:
|
30
|
+
run: |
|
31
|
+
bundle config path vendor/bundle
|
32
|
+
bundle install --jobs 4 --retry 3
|
33
|
+
gem build *.gemspec
|
30
34
|
if: ${{ steps.release.outputs.release_created }}
|
31
35
|
|
32
36
|
- name: Publish
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### [1.1.10](https://www.github.com/higebu/vagrant-vyos/compare/v1.1.9...v1.1.10) (2022-02-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* fix Gemfile.lock ([1190da6](https://www.github.com/higebu/vagrant-vyos/commit/1190da66fd3de5b991bdb84a8e31bde50d744120))
|
9
|
+
* revert Gemfile.lock ([670e496](https://www.github.com/higebu/vagrant-vyos/commit/670e496fabcf7c4a06d299c3af8e7d1a33e122c7))
|
10
|
+
|
3
11
|
### [1.1.9](https://www.github.com/higebu/vagrant-vyos/compare/v1.1.8...v1.1.9) (2021-07-07)
|
4
12
|
|
5
13
|
|
data/lib/vagrant-vyos/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-vyos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- KUSAKABE Yuya
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -73,6 +73,7 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
+
- ".github/dependabot.yml"
|
76
77
|
- ".github/release-please.yml"
|
77
78
|
- ".github/workflows/release.yml"
|
78
79
|
- ".github/workflows/test.yml"
|