Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
name: Shell Scripts Lint & Test
runs-on: ubuntu-24.04
container:
image: opensuse/tumbleweed:latest@sha256:c13ace4cd56d5d5e57885672ea75d91c3320998405b0305a1adef4a1a423a9d9
image: opensuse/tumbleweed:latest
Comment thread Fixed
steps:
- name: Install packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion test/integration/ssh_server/arch_opkssh.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ARG ISSUER_PORT="9998"
RUN go build -v -o opksshbuild

# Stage 2: Create a minimal ArchLinux-based image
FROM quay.io/archlinux/archlinux:latest@sha256:4524236733437ff1f35531147aa444b32f674d9f328aebe06d3511be575c80a3
FROM quay.io/archlinux/archlinux:latest

# Install dependencies required for runtime (e.g., SSH server)
RUN pacman -Syu --noconfirm && \
Expand Down
2 changes: 1 addition & 1 deletion test/integration/ssh_server/centos_opkssh.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ARG ISSUER_PORT="9998"
RUN go build -v -o opksshbuild

# Stage 2: Create a minimal CentOS-based image
FROM quay.io/centos/centos:stream9@sha256:0bf070f10582acaa3c415280f769797025763c8a8e6509a5883592d0872a56d6
FROM quay.io/centos/centos:stream9
# Install dependencies required for runtime (e.g., SSH server)
RUN dnf update -y && \
dnf install -y sudo openssh-server openssh-clients telnet wget jq && \
Expand Down
2 changes: 1 addition & 1 deletion test/integration/ssh_server/opensuse_opkssh.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ARG ISSUER_PORT="9998"
RUN go build -v -o opksshbuild

# Stage 2: Create a minimal openSUSE-Tumbleweed-based image
FROM opensuse/tumbleweed:latest@sha256:c13ace4cd56d5d5e57885672ea75d91c3320998405b0305a1adef4a1a423a9d9
FROM opensuse/tumbleweed:latest

# Install dependencies required for runtime (e.g., SSH server)
RUN zypper refresh && \
Expand Down
2 changes: 1 addition & 1 deletion test/integration/ssh_server/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:noble@sha256:c35e29c9450151419d9448b0fd75374fec4fff364a27f176fb458d472dfc9e54
FROM ubuntu:noble

# Update/Upgrade
RUN apt-get update -y && apt-get upgrade -y
Expand Down
Loading