-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: bump docker actions to the latest stable release
* bump `docker/build-push-action` to v3 * bump `docker/login-action` to v2 * bump `docker/setup-buildx-action` to v2 * bump `docker/setup-qemu-action` to v2
- Loading branch information
1 parent
698fe2f
commit 5a78dec
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1.1.1 | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
driver-opts: network=host | ||
|
||
|
@@ -97,7 +97,7 @@ jobs: | |
${{ runner.os }}-buildx- | ||
- name: Build & push the Fedora base image to local registry | ||
uses: docker/build-push-action@v2.2.2 | ||
uses: docker/build-push-action@v3 | ||
with: | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache | ||
|
@@ -108,7 +108,7 @@ jobs: | |
tags: localhost:5000/fedora-base:latest | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1.8.0 | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
@@ -122,7 +122,7 @@ jobs: | |
RUN --security=insecure flatpak install -y --noninteractive ${{matrix.runtime.remote}} ${{ matrix.runtime.packages }} | ||
- name: Build & push the ${{ matrix.runtime.name }} image to Docker Hub | ||
uses: docker/build-push-action@v2.2.2 | ||
uses: docker/build-push-action@v3 | ||
with: | ||
allow: security.insecure | ||
context: . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters