summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-05-17 15:30:48 -0700
committerTim Smith <tsmith@chef.io>2021-05-17 15:30:48 -0700
commit3f32fc63c8004f1917b6548ce9a2f71992d3ed86 (patch)
tree374004948e9775d9db7e2521c34a856e4b674279 /.github
parent63f49cf6b83f05779dd4923fe1edb2cbb0b3339f (diff)
downloadchef-3f32fc63c8004f1917b6548ce9a2f71992d3ed86.tar.gz
Try removing sudo
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/kitchen.yml4
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 }}