File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ jobs:
164
164
- name : (self-hosted) Install pipx
165
165
if : ${{ matrix.groups.self_hosted }}
166
166
run : |
167
+ sudo apt-get update
167
168
sudo apt-get install python3-pip python3-venv -y
168
169
python3 -m pip install --user pipx
169
170
python3 -m pipx ensurepath
@@ -248,6 +249,7 @@ jobs:
248
249
- name : Set up microk8s
249
250
if : ${{ inputs.cloud == 'microk8s' }}
250
251
run : |
252
+ sudo apt-get update
251
253
sudo apt-get install retry -y
252
254
sudo snap install microk8s --channel='${{ inputs.microk8s-snap-channel }}'
253
255
sudo adduser "$USER" '${{ steps.parse-cloud.outputs.group }}'
@@ -364,7 +366,9 @@ jobs:
364
366
env :
365
367
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
366
368
- name : Install Allure
367
- run : sudo apt-get install ./allure_*.deb -y
369
+ run : |
370
+ sudo apt-get update
371
+ sudo apt-get install ./allure_*.deb -y
368
372
# For first run, manually create branch with no history
369
373
# (e.g.
370
374
# git checkout --orphan gh-pages-beta
Original file line number Diff line number Diff line change 36
36
- name : Install CLI
37
37
run : pipx install git+https://github.com/canonical/data-platform-workflows@'${{ needs.get-workflow-version.outputs.version }}'#subdirectory=python/cli
38
38
- name : Install skopeo
39
- run : sudo apt-get install skopeo -y
39
+ run : |
40
+ sudo apt-get update
41
+ sudo apt-get install skopeo -y
40
42
- name : Checkout
41
43
uses : actions/checkout@v4
42
44
- name : Login to GitHub Container Registry
You can’t perform that action at this time.
0 commit comments