Skip to content

Commit 351a239

Browse files
authored
Ah yes; the run step is in the container at this point
1 parent 5f94d7e commit 351a239

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
uses: actions/checkout@v1
1212
- name: bundle
1313
run: |
14-
sudo apt-get install cmake
14+
apt-get update
15+
apt-get install cmake
1516
bundle install --jobs 4 --retry 3
1617
bundle binstubs puppet rake rspec-core rubocop parallel_tests
1718
- name: rspec
@@ -51,7 +52,8 @@ jobs:
5152
uses: actions/checkout@v1
5253
- name: bundle
5354
run: |
54-
sudo apt-get install cmake
55+
apt-get update
56+
apt-get install cmake
5557
bundle install --jobs 4 --retry 3
5658
bundle binstubs puppet rake rspec-core rubocop parallel_tests
5759
- name: rspec
@@ -68,7 +70,8 @@ jobs:
6870
uses: actions/checkout@v1
6971
- name: bundle
7072
run: |
71-
sudo apt-get install cmake
73+
apt-get update
74+
apt-get install cmake
7275
bundle install --jobs 4 --retry 3
7376
bundle binstubs puppet rake rspec-core rubocop parallel_tests
7477
- name: rubocop
@@ -85,7 +88,8 @@ jobs:
8588
uses: actions/checkout@v1
8689
- name: bundle
8790
run: |
88-
sudo apt-get install cmake
91+
apt-get update
92+
apt-get install cmake
8993
bundle install --jobs 4 --retry 3
9094
bundle binstubs puppet rake rspec-core rubocop parallel_tests
9195
- name: rubocop

0 commit comments

Comments
 (0)