Skip to content

Commit ee6313f

Browse files
committed
action: move OS upgrade right before devstack install
1 parent 2980f82 commit ee6313f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ inputs:
2222
runs:
2323
using: "composite"
2424
steps:
25-
- name: Run update and upgrade
26-
run: sudo apt update && sudo apt -y upgrade
27-
shell: bash
2825
- name: Install python pip
2926
run: python -m pip install --upgrade pip
3027
shell: bash
@@ -78,6 +75,9 @@ runs:
7875
fi
7976
working-directory: ./devstack
8077
shell: bash
78+
- name: Upgrade the operating system
79+
run: sudo apt-get update && sudo apt-get -y upgrade
80+
shell: bash
8181
- name: Run devstack
8282
env:
8383
FORCE: ${{ inputs.force }}

0 commit comments

Comments
 (0)