Skip to content

Commit

Permalink
workflows: checkout v4; apt-get update
Browse files Browse the repository at this point in the history
Bump checkout to latest v4
Perform apt-get update before apt-get install for pre-install

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
  • Loading branch information
moto-timo committed Jan 6, 2024
1 parent 2db79e5 commit 8026dd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python 3.8
uses: actions/setup-python@v4
Expand All @@ -71,7 +71,7 @@ jobs:
# For annotate-output
- name: pre-install
run: sudo apt-get install -y devscripts
run: sudo apt-get update && sudo apt-get install -y devscripts

# Build the image
- name: build
Expand Down

0 comments on commit 8026dd5

Please sign in to comment.