aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorPeter Johanson <[email protected]>2021-10-18 18:08:51 +0000
committerPete Johanson <[email protected]>2021-10-23 15:33:42 -0400
commit5cc7c280a5d97df99e08bace0e373e24cad13abd (patch)
treefb0e865362fe4527023bfe4066356f77cca9abb5 /.github
parente3eb77dfc6c48b3f8bcf72101973d6342d6fc3f4 (diff)
downloadzmk-5cc7c280a5d97df99e08bace0e373e24cad13abd.tar.gz
zmk-5cc7c280a5d97df99e08bace0e373e24cad13abd.zip
refactor: Move to explicit docker.io/* image references.
* Some runtimes (e.g. podman), require explicit registries in image URLs or will prompt for the user to select one, which breaks things like VSCode remote container rebuilds.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/hardware-metadata-validation.yml2
-rw-r--r--.github/workflows/test.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 36bca31df7..b790b66568 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -14,7 +14,7 @@ jobs:
build:
runs-on: ubuntu-latest
container:
- image: zmkfirmware/zmk-build-arm:2.5
+ image: docker.io/zmkfirmware/zmk-build-arm:2.5
strategy:
matrix:
board:
diff --git a/.github/workflows/hardware-metadata-validation.yml b/.github/workflows/hardware-metadata-validation.yml
index 1318b4bd22..5c2fd375d0 100644
--- a/.github/workflows/hardware-metadata-validation.yml
+++ b/.github/workflows/hardware-metadata-validation.yml
@@ -29,7 +29,7 @@ jobs:
validate-metadata:
runs-on: ubuntu-latest
container:
- image: zmkfirmware/zmk-dev-arm:2.5
+ image: docker.io/zmkfirmware/zmk-dev-arm:2.5
steps:
- uses: actions/checkout@v2
- name: Install dependencies
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 1f8e443afd..e8cdcedfbe 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -16,7 +16,7 @@ jobs:
integration_test:
runs-on: ubuntu-latest
container:
- image: zmkfirmware/zmk-build-arm:2.5
+ image: docker.io/zmkfirmware/zmk-build-arm:2.5
steps:
- name: Checkout
uses: actions/checkout@v2