diff options
author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2019-08-11 07:58:03 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2019-08-11 07:58:03 +0900 |
commit | c58c75f8aa49bac0380bda3f8ff940fc89b74950 (patch) | |
tree | c18569a8e69d204670be9a421e329a008d6838c5 /.github | |
parent | 608c0f417b79d2106f5797859420af71861a8a76 (diff) | |
download | psych-c58c75f8aa49bac0380bda3f8ff940fc89b74950.tar.gz |
Use sudo for apt
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ubuntu-rvm.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ubuntu.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ubuntu-rvm.yml b/.github/workflows/ubuntu-rvm.yml index 7ed50ed..9ddf04d 100644 --- a/.github/workflows/ubuntu-rvm.yml +++ b/.github/workflows/ubuntu-rvm.yml @@ -10,7 +10,7 @@ jobs: ruby: [ 'jruby-9.2.0.0', 'jruby-9.1.17.0', 'ruby-head' ] steps: - name: Install libraries - run: apt install haveged + run: sudo apt install haveged - uses: actions/checkout@master - name: Set up RVM run: | diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 5ea2493..6860865 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -10,7 +10,7 @@ jobs: ruby: [ '2.6.x', '2.5.x', '2.4.x', '2.3.x' ] steps: - name: Install libraries - run: apt install haveged + run: sudo apt install haveged - uses: actions/checkout@master - name: Set up Ruby uses: actions/setup-ruby@v1 |