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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 86f6b425cded6da9d45eb1847bd09ea742a6294f44c057cba941d9482ce11642
4
- data.tar.gz: 2d397f4941dd5b0612c36cee75d628e1bfc61581052a5eafef641503ebf02451
3
+ metadata.gz: d1f468dfa368a607a6547f2163837c166f84d370af5fd0e555179d6cf26198f0
4
+ data.tar.gz: f215bef255dc8357390ca87fde71ef92326c92811986d89b94a98c5630915bc4
5
5
  SHA512:
6
- metadata.gz: 20133bc88d95688885a25c53ce6913ff84d4a6b40324b2bf0d67e05d07514c4d420ce1c0a9861cd7e829cabf991fccaf7035e22d31f2378e02dbb0afa2bd64a0
7
- data.tar.gz: c2680c126cd0f0933bc9564694fdc1041514a1e0889e1c0b4052f54fbd40f01a8b4645ece3c23c160101548543e72af51be57e2cd7466876849f9ebfeec1fb6f
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: gem build *.gemspec
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
@@ -13,10 +13,9 @@ jobs:
13
13
  uses: ruby/setup-ruby@v1
14
14
  with:
15
15
  ruby-version: 2.6
16
- bundler-cache: true
16
+
17
17
  - name: Test
18
18
  run: |
19
- gem install bundler
20
19
  bundle config path vendor/bundle
21
20
  bundle install --jobs 4 --retry 3
22
21
  bundle exec rake spec
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
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GuestVyOS
3
- VERSION = "1.1.9"
3
+ VERSION = "1.1.10"
4
4
  end
5
5
  end
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.9
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: 2021-07-07 00:00:00.000000000 Z
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"