Skip to content

Commit

Permalink
Merge pull request #89 from hotoo/deps/upgrades
Browse files Browse the repository at this point in the history
deps: upgrade dependencies
  • Loading branch information
hotoo authored Apr 1, 2022
2 parents 926e5b8 + 773de3f commit aa187d2
Show file tree
Hide file tree
Showing 4 changed files with 1,051 additions and 744 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm i
- run: make test

- name: Coveralls
Expand Down
2 changes: 1 addition & 1 deletion bin/openrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function openrc(uri, options) {
var gitopenrc = path.join($HOME, '.gitopenrc');
if (fs.existsSync(gitopenrc)) {
try {
config = yaml.safeLoad(fs.readFileSync(gitopenrc, 'utf8'));
config = yaml.load(fs.readFileSync(gitopenrc, 'utf8'));
Object.keys(config).some(function(hostname) {
if (HOSTNAME === hostname) {
gitopenConfig.protocol = config[hostname].protocol || 'https';
Expand Down
Loading

0 comments on commit aa187d2

Please sign in to comment.