Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump addnab/docker-run-action from v1 to v2 #62

Merged
Merged
Changes from all commits
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
build-args: |
CONTAINER_VERSION=amazonlinux:1
- name: Run Amazon 1
uses: addnab/docker-run-action@v1
uses: addnab/docker-run-action@v2
with:
image: amazon-builder:${{ github.sha }}
run: /build.sh
Expand All @@ -124,7 +124,7 @@ jobs:
build-args: |
CONTAINER_VERSION=amazonlinux:2
- name: Run Amazon 2
uses: addnab/docker-run-action@v1
uses: addnab/docker-run-action@v2
with:
image: amazon2-builder:${{ github.sha }}
run: /build.sh
Expand All @@ -142,7 +142,7 @@ jobs:
build-args: |
CONTAINER_VERSION=centos:7
- name: Run Centos 7
uses: addnab/docker-run-action@v1
uses: addnab/docker-run-action@v2
with:
image: centos7-builder:${{ github.sha }}
run: /build.sh
Expand All @@ -161,7 +161,7 @@ jobs:
CONTAINER_VERSION=ubuntu:xenial
OS_VERSION=xenial
- name: Run Ubuntu Xenial
uses: addnab/docker-run-action@v1
uses: addnab/docker-run-action@v2
with:
image: ubuntu-xenial-builder:${{ github.sha }}
run: /build.sh
Expand All @@ -180,7 +180,7 @@ jobs:
CONTAINER_VERSION=ubuntu:bionic
OS_VERSION=bionic
- name: Run Ubuntu Bionic
uses: addnab/docker-run-action@v1
uses: addnab/docker-run-action@v2
with:
image: ubuntu-bionic-builder:${{ github.sha }}
run: /build.sh
Expand All @@ -199,7 +199,7 @@ jobs:
CONTAINER_VERSION=ubuntu:focal
OS_VERSION=focal
- name: Run Ubuntu Focal
uses: addnab/docker-run-action@v1
uses: addnab/docker-run-action@v2
with:
image: ubuntu-focal-builder:${{ github.sha }}
run: /build.sh
Expand All @@ -218,7 +218,7 @@ jobs:
CONTAINER_VERSION=ubuntu:groovy
OS_VERSION=groovy
- name: Run Ubuntu Groovy
uses: addnab/docker-run-action@v1
uses: addnab/docker-run-action@v2
with:
image: ubuntu-groovy-builder:${{ github.sha }}
run: /build.sh
Expand Down