Skip to content

Commit

Permalink
Merge pull request #26 from adzerk/rs/dependency-updates-202212
Browse files Browse the repository at this point in the history
Update dependencies 202212
  • Loading branch information
ryuichis authored Dec 15, 2022
2 parents 870032b + 41a2183 commit 909bc3e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
git push --tags --force
fi
- name: set up ruby
uses: actions/setup-ruby@v1
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.x
ruby-version: '2.6'
- name: create credentials folder
run: mkdir -p ~/.gem
- name: create credentials file
Expand All @@ -41,4 +41,4 @@ jobs:
- name: build gem
run: bundle exec rake build
- name: publish gem
run: gem push ./pkg/adzerk_decision_sdk-*.gem
run: gem push ./pkg/adzerk_decision_sdk-*.gem
14 changes: 7 additions & 7 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
- name: set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.x
ruby-version: '2.6'
- name: Build and test with Rake
run: |
gem install bundler
Expand All @@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
- name: set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.x
ruby-version: '2.6'
- name: Update Version
run: sed -i -r "s/VERSION = '[0-9a-z.-]+'\$/VERSION = '0.0.1.${GITHUB_REF##*/}'/g" lib/adzerk_decision_sdk/version.rb
- name: Publish to Artifactory
Expand All @@ -34,4 +34,4 @@ jobs:
chmod 0600 $HOME/.gem/credentials
curl -ugithub:${{ secrets.ARTIFACTORY_PASSWORD }} https://adzerkps.jfrog.io/artifactory/api/gems/gems/api/v1/api_key.yaml > ~/.gem/credentials
rake build
gem push --host https://adzerkps.jfrog.io/artifactory/api/gems/gems pkg/*.gem
gem push --host https://adzerkps.jfrog.io/artifactory/api/gems/gems pkg/*.gem
12 changes: 5 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
PATH
remote: .
specs:
adzerk_decision_sdk (1.0.0.pre.beta.5)
json (~> 2.1, >= 2.1.0)
adzerk_decision_sdk (1.0.0.pre.beta.13)
typhoeus (~> 1.0, >= 1.0.1)

GEM
Expand All @@ -12,11 +11,10 @@ GEM
byebug (11.1.1)
coderay (1.1.2)
diff-lcs (1.3)
ethon (0.12.0)
ffi (>= 1.3.0)
ffi (1.13.1)
ethon (0.16.0)
ffi (>= 1.15.0)
ffi (1.15.5)
jaro_winkler (1.5.4)
json (2.3.1)
method_source (0.9.2)
parallel (1.19.1)
parser (2.7.0.2)
Expand Down Expand Up @@ -67,4 +65,4 @@ DEPENDENCIES
rubocop (~> 0.66.0)

BUNDLED WITH
2.1.2
2.1.2

0 comments on commit 909bc3e

Please sign in to comment.