Skip to content

Commit 9c3bb9b

Browse files
authored
update ci (#301)
* (ci) update apt install to use sudo * (ci) update apt-get install * (ci) install checked out version * (ci) split chromium dep and gowitness install steps
1 parent 65c55e8 commit 9c3bb9b

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/install-check.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@ jobs:
2222
with:
2323
go-version: "1.25"
2424

25-
- name: Install gowitness at specific commit
25+
- name: Install chromium
2626
run: |
27-
apt-get update && apt-get install -y \
28-
ca-certificates chromium
29-
go install github.com/sensepost/gowitness@${GITHUB_SHA}
27+
sudo apt-get update && \
28+
sudo apt-get install -y \
29+
ca-certificates chromium \
30+
31+
- name: Install gowitness
32+
run: |
33+
go install ./...
3034
3135
- name: Verify Installation
3236
run: |

0 commit comments

Comments
 (0)