Skip to content

Commit

Permalink
Fix Docker Scan plugin install
Browse files Browse the repository at this point in the history
Signed-off-by: Bartosz Zurkowski <zurkowski.bartosz@gmail.com>
  • Loading branch information
bzurkowski committed Sep 11, 2022
1 parent 40843e0 commit e9cee8c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,16 @@ jobs:
uname -m
uname -a
- name: Install Docker Scan plugin
- name: Install latest Docker
run: |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install -y docker-scan-plugin
sudo apt-get install docker-ce
- name: Install Docker Scan plugin
run: |
sudo apt-get update && sudo apt-get install docker-scan-plugin
- name: Test Docker version
run: |
Expand Down

0 comments on commit e9cee8c

Please sign in to comment.