Skip to content

Commit d569768

Browse files
Fix: Use valid Docker tag for SSHD service in test workflow
Updated .github/workflows/test.yml to use `rastasheep/ubuntu-sshd:jammy` instead of `rastasheep/ubuntu-sshd:22.04`, as the latter tag was not found. 'jammy' corresponds to Ubuntu 22.04 and should resolve the Docker pull error for the test service container.
1 parent d3512a2 commit d569768

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
services:
99
sshd:
10-
image: rastasheep/ubuntu-sshd:22.04 # Pinned version
10+
image: rastasheep/ubuntu-sshd:jammy # Updated to jammy for Ubuntu 22.04
1111
ports:
1212
- 2222:22
1313
# We will configure the sshd service using a step below

0 commit comments

Comments
 (0)