diff options
author | Tim Smith <tsmith@chef.io> | 2021-05-17 15:30:48 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2021-05-17 15:30:48 -0700 |
commit | 3f32fc63c8004f1917b6548ce9a2f71992d3ed86 (patch) | |
tree | 374004948e9775d9db7e2521c34a856e4b674279 /.github/workflows | |
parent | 63f49cf6b83f05779dd4923fe1edb2cbb0b3339f (diff) | |
download | chef-3f32fc63c8004f1917b6548ce9a2f71992d3ed86.tar.gz |
Try removing sudo
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/kitchen.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/kitchen.yml b/.github/workflows/kitchen.yml index 1aec12a534..32eff47937 100644 --- a/.github/workflows/kitchen.yml +++ b/.github/workflows/kitchen.yml @@ -123,5 +123,5 @@ jobs: - name: Run Test Kitchen run: | cd kitchen-tests - sudo bundle install - sudo bundle exec kitchen test end-to-end-${{ matrix.os }} + bundle install + bundle exec kitchen test end-to-end-${{ matrix.os }} |