mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2025-01-18 19:11:14 +01:00
CI: update step versions
This commit is contained in:
parent
f4aa36a53e
commit
014b328705
6 changed files with 36 additions and 36 deletions
18
.github/workflows/docker-image-pr.yml
vendored
18
.github/workflows/docker-image-pr.yml
vendored
|
@ -13,15 +13,15 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check Out Repo
|
- name: Check Out Repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Build PDNS Recursor latest
|
- name: Build PDNS Recursor latest
|
||||||
id: docker_build_recursor_latest
|
id: docker_build_recursor_latest
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-recursor
|
context: ./pdns-recursor
|
||||||
file: ./pdns-recursor/Dockerfile
|
file: ./pdns-recursor/Dockerfile
|
||||||
|
@ -34,7 +34,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build PDNS Recursor alpine
|
- name: Build PDNS Recursor alpine
|
||||||
id: docker_build_recursor_alpine
|
id: docker_build_recursor_alpine
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-recursor
|
context: ./pdns-recursor
|
||||||
file: ./pdns-recursor/Dockerfile.alpine
|
file: ./pdns-recursor/Dockerfile.alpine
|
||||||
|
@ -47,7 +47,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build PDNS latest
|
- name: Build PDNS latest
|
||||||
id: docker_build_pdns_latest
|
id: docker_build_pdns_latest
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns
|
context: ./pdns
|
||||||
file: ./pdns/Dockerfile
|
file: ./pdns/Dockerfile
|
||||||
|
@ -60,7 +60,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build PDNS alpine
|
- name: Build PDNS alpine
|
||||||
id: docker_build_pdns_alpine
|
id: docker_build_pdns_alpine
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns
|
context: ./pdns
|
||||||
file: ./pdns/Dockerfile.alpine
|
file: ./pdns/Dockerfile.alpine
|
||||||
|
@ -73,7 +73,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build admin base
|
- name: Build admin base
|
||||||
id: docker_build_admin_base
|
id: docker_build_admin_base
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-admin-base-ngoduykhanh
|
context: ./pdns-admin-base-ngoduykhanh
|
||||||
file: ./pdns-admin-base-ngoduykhanh/Dockerfile
|
file: ./pdns-admin-base-ngoduykhanh/Dockerfile
|
||||||
|
@ -88,7 +88,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build admin uwsgi
|
- name: Build admin uwsgi
|
||||||
id: docker_build_admin_uwsgi
|
id: docker_build_admin_uwsgi
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-admin-uwsgi-ngoduykhanh
|
context: ./pdns-admin-uwsgi-ngoduykhanh
|
||||||
file: ./pdns-admin-uwsgi-ngoduykhanh/Dockerfile
|
file: ./pdns-admin-uwsgi-ngoduykhanh/Dockerfile
|
||||||
|
@ -103,7 +103,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build admin static
|
- name: Build admin static
|
||||||
id: docker_build_admin_static
|
id: docker_build_admin_static
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-admin-static-ngoduykhanh
|
context: ./pdns-admin-static-ngoduykhanh
|
||||||
file: ./pdns-admin-static-ngoduykhanh/Dockerfile
|
file: ./pdns-admin-static-ngoduykhanh/Dockerfile
|
||||||
|
|
|
@ -14,14 +14,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check Out Repo
|
- name: Check Out Repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||||
|
@ -32,7 +32,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push PDNS
|
- name: Build and push PDNS
|
||||||
id: docker_build_pdns
|
id: docker_build_pdns
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns
|
context: ./pdns
|
||||||
file: ./pdns/Dockerfile.alpine
|
file: ./pdns/Dockerfile.alpine
|
||||||
|
|
|
@ -14,14 +14,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check Out Repo
|
- name: Check Out Repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||||
|
@ -32,7 +32,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push PDNS
|
- name: Build and push PDNS
|
||||||
id: docker_build_pdns
|
id: docker_build_pdns
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns
|
context: ./pdns
|
||||||
file: ./pdns/Dockerfile
|
file: ./pdns/Dockerfile
|
||||||
|
|
|
@ -14,14 +14,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check Out Repo
|
- name: Check Out Repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||||
|
@ -32,7 +32,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push PDNS Recursor
|
- name: Build and push PDNS Recursor
|
||||||
id: docker_build_recursor
|
id: docker_build_recursor
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-recursor
|
context: ./pdns-recursor
|
||||||
file: ./pdns-recursor/Dockerfile.alpine
|
file: ./pdns-recursor/Dockerfile.alpine
|
||||||
|
|
|
@ -14,14 +14,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check Out Repo
|
- name: Check Out Repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||||
|
@ -32,7 +32,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push PDNS Recursor
|
- name: Build and push PDNS Recursor
|
||||||
id: docker_build_recursor
|
id: docker_build_recursor
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-recursor
|
context: ./pdns-recursor
|
||||||
file: ./pdns-recursor/Dockerfile
|
file: ./pdns-recursor/Dockerfile
|
||||||
|
|
20
.github/workflows/docker-image.yml
vendored
20
.github/workflows/docker-image.yml
vendored
|
@ -13,21 +13,21 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check Out Repo
|
- name: Check Out Repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||||
|
|
||||||
- name: Build and push PDNS Recursor latest
|
- name: Build and push PDNS Recursor latest
|
||||||
id: docker_build_recursor_latest
|
id: docker_build_recursor_latest
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-recursor
|
context: ./pdns-recursor
|
||||||
file: ./pdns-recursor/Dockerfile
|
file: ./pdns-recursor/Dockerfile
|
||||||
|
@ -40,7 +40,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push PDNS Recursor alpine
|
- name: Build and push PDNS Recursor alpine
|
||||||
id: docker_build_recursor_alpine
|
id: docker_build_recursor_alpine
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-recursor
|
context: ./pdns-recursor
|
||||||
file: ./pdns-recursor/Dockerfile.alpine
|
file: ./pdns-recursor/Dockerfile.alpine
|
||||||
|
@ -53,7 +53,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push PDNS latest
|
- name: Build and push PDNS latest
|
||||||
id: docker_build_pdns_latest
|
id: docker_build_pdns_latest
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns
|
context: ./pdns
|
||||||
file: ./pdns/Dockerfile
|
file: ./pdns/Dockerfile
|
||||||
|
@ -66,7 +66,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push PDNS alpine
|
- name: Build and push PDNS alpine
|
||||||
id: docker_build_pdns_alpine
|
id: docker_build_pdns_alpine
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns
|
context: ./pdns
|
||||||
file: ./pdns/Dockerfile.alpine
|
file: ./pdns/Dockerfile.alpine
|
||||||
|
@ -79,7 +79,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push admin base
|
- name: Build and push admin base
|
||||||
id: docker_build_admin_base
|
id: docker_build_admin_base
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-admin-base-ngoduykhanh
|
context: ./pdns-admin-base-ngoduykhanh
|
||||||
file: ./pdns-admin-base-ngoduykhanh/Dockerfile
|
file: ./pdns-admin-base-ngoduykhanh/Dockerfile
|
||||||
|
@ -94,7 +94,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push admin uwsgi
|
- name: Build and push admin uwsgi
|
||||||
id: docker_build_admin_uwsgi
|
id: docker_build_admin_uwsgi
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-admin-uwsgi-ngoduykhanh
|
context: ./pdns-admin-uwsgi-ngoduykhanh
|
||||||
file: ./pdns-admin-uwsgi-ngoduykhanh/Dockerfile
|
file: ./pdns-admin-uwsgi-ngoduykhanh/Dockerfile
|
||||||
|
@ -109,7 +109,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push admin static
|
- name: Build and push admin static
|
||||||
id: docker_build_admin_static
|
id: docker_build_admin_static
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
context: ./pdns-admin-static-ngoduykhanh
|
context: ./pdns-admin-static-ngoduykhanh
|
||||||
file: ./pdns-admin-static-ngoduykhanh/Dockerfile
|
file: ./pdns-admin-static-ngoduykhanh/Dockerfile
|
||||||
|
|
Loading…
Reference in a new issue