-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump actions/checkout from v3 to v4 - Bump actions/setup-node from v3 to v4 - Bump docker/build-push-action from v4 to v5 - Bump docker/login-action from v2 to v3 - Bump docker/metadata-action from v4 to v5 - Bump docker/setup-buildx-action from v2 to v3 - Bump docker/setup-qemu-action from v2 to v3
- Loading branch information
1 parent
f5c26cf
commit 423c2ed
Showing
2 changed files
with
10 additions
and
10 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 |
---|---|---|
|
@@ -18,31 +18,31 @@ jobs: | |
timeout-minutes: 30 | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Set docker outputs | ||
id: docker | ||
run: | | ||
echo "cert-path=/home/runner/.docker/deploy" >> $GITHUB_OUTPUT | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Login to the private registry | ||
if: ${{ github.event_name != 'pull_request' }} | ||
uses: docker/login-action@v2 | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ secrets.DOCKER_REGISTRY_HOST }} | ||
username: ${{ secrets.DOCKER_REGISTRY_USER }} | ||
password: ${{ secrets.DOCKER_REGISTRY_PASS }} | ||
- name: Generate an image metadata | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
uses: docker/metadata-action@v5 | ||
with: | ||
flavor: latest=${{ github.ref == 'refs/heads/main' && 'true' || 'false' }} | ||
images: ${{ secrets.DOCKER_REGISTRY_HOST }}/universal-redux | ||
labels: [email protected] | ||
- name: Build an image | ||
uses: docker/build-push-action@v4 | ||
uses: docker/build-push-action@v5 | ||
with: | ||
build-args: | | ||
APP_BASE_PATH=${{ secrets.APP_PUBLIC_PATH }} | ||
|
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