Skip to content

Commit 6ec0a8c

Browse files
Updated CLI and SDK version (#3)
* Updated CLI and SDK version * Updated actions to v3 * Updated node to v18
1 parent 7936563 commit 6ec0a8c

File tree

5 files changed

+1339
-1796
lines changed

5 files changed

+1339
-1796
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
7+
- uses: actions/checkout@v3
88
- uses: ruby/setup-ruby@v1
99
with:
1010
ruby-version: 2.6
1111
bundler-cache: true
12-
- uses: actions/cache@v2
12+
- uses: actions/cache@v3
1313
with:
1414
path: "./vendor/bundle"
1515
key: v1/${{ runner.os }}/ruby-2.6/${{ hashFiles('**/Gemfile.lock') }}
1616
restore-keys: v1/${{ runner.os }}/ruby-2.6/
1717
- uses: actions/setup-node@v1
1818
with:
19-
node-version: 12
20-
- uses: actions/cache@v2
19+
node-version: 18
20+
- uses: actions/cache@v3
2121
with:
2222
path: ~/.npm
23-
key: v1/${{ runner.os }}/node-12/${{ hashFiles('**/package-lock.lock') }}
24-
restore-keys: v1/${{ runner.os }}/node-12/
23+
key: v1/${{ runner.os }}/node-18/${{ hashFiles('**/package-lock.lock') }}
24+
restore-keys: v1/${{ runner.os }}/node-18/
2525
- run: make test
2626
env:
2727
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
66

77
# gem "rails"
88
gem 'selenium-webdriver', '~> 4.0.0.beta3'
9-
gem 'percy-selenium', '~> 1.0.0.pre.0'
9+
gem 'percy-selenium', '~> 1.1.1'

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GEM
22
remote: https://rubygems.org/
33
specs:
44
childprocess (4.0.0)
5-
percy-selenium (1.0.0.pre.0)
5+
percy-selenium (1.1.1)
66
selenium-webdriver (>= 4.0.0.beta1)
77
rexml (3.2.5)
88
rubyzip (2.3.0)
@@ -17,7 +17,7 @@ PLATFORMS
1717
ruby
1818

1919
DEPENDENCIES
20-
percy-selenium (~> 1.0.0.pre.0)
20+
percy-selenium (~> 1.1.1)
2121
selenium-webdriver (~> 4.0.0.beta3)
2222

2323
BUNDLED WITH

0 commit comments

Comments
 (0)