Skip to content

Commit

Permalink
deps: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hotoo committed Apr 1, 2022
1 parent ef01f30 commit 773de3f
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 773de3f

Please sign in to comment.