We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b23b96a commit b1c7dcfCopy full SHA for b1c7dcf
1 file changed
.github/workflows/test_suite.yml
@@ -24,9 +24,17 @@ jobs:
24
- name: Pull selenium-standalone:latest
25
run: podman pull selenium/standalone-${{ matrix.browser }}:latest
26
27
- - name: Pull docker.io/library/nginx:alpine
+ - name: Pull nginx:alpine
28
run: podman pull docker.io/library/nginx:alpine
29
30
+ - name: Pull pause
31
+ run: |
32
+ # something screwy is going on in the github kube node
33
+ # seeing 404s pulling from k8s.gcr, which was deprecated a year ago anyway
34
+ # the registry name is hardcoded somewhere on the infra side, but the pull from the new registry works consistently
35
+ podman pull registry.k8s.io/pause:3.5
36
+ podman tag registry.k8s.io/pause:3.5 k8s.gcr.io/pause:3.5
37
+
38
- name: Checkout
39
uses: actions/checkout@v4
40
0 commit comments