Skip to content

Commit d76567d

Browse files
Downgrade GitHub Docker actions
1 parent a4d0498 commit d76567d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: "📥 Check-out"
1111
uses: actions/checkout@v2
1212
- name: "🚀 Build Docker image"
13-
uses: docker/build-push-action@v2
13+
uses: docker/build-push-action@v1
1414
with:
1515
path: frontend
1616
push: false
@@ -21,7 +21,7 @@ jobs:
2121
- name: "📥 Check-out"
2222
uses: actions/checkout@v2
2323
- name: "🚀 Build Docker image"
24-
uses: docker/build-push-action@v2
24+
uses: docker/build-push-action@v1
2525
with:
2626
path: backend
2727
push: false

.github/workflows/push-docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: "📥 Check-out"
1919
uses: actions/checkout@v2
2020
- name: "🚀 Build & push to GitHub Packages"
21-
uses: docker/build-push-action@v2
21+
uses: docker/build-push-action@v1
2222
with:
2323
registry: docker.pkg.github.com
2424
username: ${{ github.actor }}
@@ -29,7 +29,7 @@ jobs:
2929
labels: org.opencontainers.image.url=https://github.com/${{ github.repository }},org.opencontainers.image.documentation=https://github.com/${{ github.repository }},org.opencontainers.image.title=TARGER,org.opencontainers.image.description=Neural Argument Mining at Your Fingertips
3030
add_git_labels: true
3131
- name: "🚀 Build & push to Docker Hub"
32-
uses: docker/build-push-action@v2
32+
uses: docker/build-push-action@v1
3333
with:
3434
username: ${{ secrets.DOCKER_USERNAME }}
3535
password: ${{ secrets.DOCKER_TOKEN }}
@@ -45,7 +45,7 @@ jobs:
4545
- name: "📥 Check-out"
4646
uses: actions/checkout@v2
4747
- name: "🚀 Build & push to GitHub Packages"
48-
uses: docker/build-push-action@v2
48+
uses: docker/build-push-action@v1
4949
with:
5050
registry: docker.pkg.github.com
5151
username: ${{ github.actor }}
@@ -56,7 +56,7 @@ jobs:
5656
labels: org.opencontainers.image.url=https://github.com/${{ github.repository }},org.opencontainers.image.documentation=https://github.com/${{ github.repository }},org.opencontainers.image.title=TARGER,org.opencontainers.image.description=Neural Argument Mining at Your Fingertips
5757
add_git_labels: true
5858
- name: "🚀 Build & push to Docker Hub"
59-
uses: docker/build-push-action@v2
59+
uses: docker/build-push-action@v1
6060
with:
6161
username: ${{ secrets.DOCKER_USERNAME }}
6262
password: ${{ secrets.DOCKER_TOKEN }}

0 commit comments

Comments
 (0)