finapps 5.0.41 → 5.0.43

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: 5b293938018fe5cdcccba1a161ca630d5d1e602a634483c5b1281adf4611c76f
4
- data.tar.gz: 2ede0f7dfe44afe57006c8d685f0b550104d3c1395e98d1cf75538f870fbd6bc
3
+ metadata.gz: 25bea095f4796915e3b73d50300279a31fd052ca797da34c91a41078f9eecc2b
4
+ data.tar.gz: 2f4123341bbc2703a26d8ad361428fb050a06c797390d7b57f2b67f07bef90de
5
5
  SHA512:
6
- metadata.gz: e14eb4bc25a190d5803163b9cb60c2440be01b1172779c4a16d54f538a76b85e1c4650c7c98776b0185ffa5292e536142a4f899023f5fb6340ba0906f4ca2797
7
- data.tar.gz: 0b7fe2a98897d7908657cf9579312449f236ed8611db113b5c88b46a00450ea1ffdfb9d43a2ae155c60197748ffa5a2081702caffc8b4e4a433b25a7d40e9edc
6
+ metadata.gz: 03c8eccc181f51654a07bad7769ce759707d6f6a54a21a806ce0b924ef7bce7ee17c1f27751a86f9659d83e6e7005988dd48bad3d51127bc1957f6764a392116
7
+ data.tar.gz: 01205c7a1e01a4267d5dd9ad4e10789872a2e6bf47e29c354ed2c9939c806e01bdfa00b1a1c1c36012397cbc6b235760c99486f8b3f71f17c912ad6e458cf059
@@ -18,7 +18,7 @@ jobs:
18
18
  with:
19
19
  ruby-version: '2.6'
20
20
 
21
- - uses: actions/cache@v1
21
+ - uses: actions/cache@v2
22
22
  with:
23
23
  path: vendor/bundle
24
24
  key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
@@ -27,7 +27,7 @@ jobs:
27
27
 
28
28
  - name: Install gems
29
29
  run: |
30
- gem install bundler
30
+ gem install -N bundler
31
31
  bundle config path vendor/bundle
32
32
  bundle install --jobs 4 --retry 3
33
33
 
@@ -12,6 +12,7 @@ jobs:
12
12
  steps:
13
13
  - uses: actions/checkout@master
14
14
  with:
15
+ persist-credentials: false
15
16
  fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
16
17
 
17
18
  - uses: actions/setup-ruby@v1
@@ -22,13 +23,23 @@ jobs:
22
23
  id: get_version
23
24
  uses: battila7/get-version-action@v2
24
25
 
25
- - name: Bump version
26
+ - name: Bump version
26
27
  run: |
27
28
  gem install -N gem-release
28
29
  git config --local user.email "action@github.com"
29
30
  git config --local user.name "GitHub Action"
30
31
  gem bump --skip-ci --version ${{ steps.get_version.outputs.version-without-v }}
31
- git push origin HEAD:master
32
+
33
+ - name: Push changes
34
+ uses: ad-m/github-push-action@master
35
+ with:
36
+ # GitHub Actions token does not support pushing to protected branches.
37
+ # github_token: ${{ secrets.GITHUB_TOKEN }}
38
+ #
39
+ # A manually populated`PERSONAL_ACCESS_TOKEN` environment variable
40
+ # with permissions to push to a protected branch must be used.
41
+ # not ideal - keep eyes open for a better solution
42
+ github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
32
43
 
33
44
  - name: Release gem to rubygems.org
34
45
  run: |
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FinApps
4
- VERSION = '5.0.41'
4
+ VERSION = '5.0.43'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: finapps
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.41
4
+ version: 5.0.43
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erich Quintero