File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,22 @@ jobs:
13
13
echo "TIMESTAMP=$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV
14
14
- name : Checkout code
15
15
uses : actions/checkout@v4
16
- - name : Install iptables
16
+ - name : Install tools
17
17
run : |
18
- sudo apt-get update
19
- sudo apt-get install -y iptables
18
+ apt update
19
+ echo "Installing sudo ------"
20
+ apt install sudo
21
+ echo "Installing Iptables ------"
22
+ apt -y install iptables
23
+ echo "Installing fuse-overlayfs ------"
24
+ apt -y install fuse-overlayfs
25
+ echo "Installing modprobe ------"
26
+ apt -y install kmod
20
27
- name : Set up Docker
21
28
uses : docker/setup-docker-action@v4
22
29
with :
23
30
version : " 27.5.1"
31
+ rootless : true
24
32
- name : Login to Harbor
25
33
uses : docker/login-action@v2
26
34
with :
You can’t perform that action at this time.
0 commit comments