Browse Source
Update GitHub Action Versions (#1028)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/1029/head
Sebastian Stehle
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
8 deletions
-
.github/workflows/dev.yml
-
.github/workflows/release.yml
|
|
|
@ -22,13 +22,13 @@ jobs: |
|
|
|
uses: rlespinasse/github-slug-action@v4.4.1 |
|
|
|
|
|
|
|
- name: Prepare - Set up QEMU |
|
|
|
uses: docker/setup-qemu-action@v2.2.0 |
|
|
|
uses: docker/setup-qemu-action@v3.0.0 |
|
|
|
|
|
|
|
- name: Prepare - Set up Docker Buildx |
|
|
|
uses: docker/setup-buildx-action@v2.10.0 |
|
|
|
uses: docker/setup-buildx-action@v3.0.0 |
|
|
|
|
|
|
|
- name: Build - BUILD |
|
|
|
uses: docker/build-push-action@v4.2.1 |
|
|
|
uses: docker/build-push-action@v5.0.0 |
|
|
|
with: |
|
|
|
load: true |
|
|
|
build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}" |
|
|
|
@ -103,7 +103,7 @@ jobs: |
|
|
|
|
|
|
|
- name: Publish - Login to Docker Hub |
|
|
|
if: github.event_name != 'pull_request' |
|
|
|
uses: docker/login-action@v2.2.0 |
|
|
|
uses: docker/login-action@v3.0.0 |
|
|
|
with: |
|
|
|
username: ${{ secrets.DOCKER_USERNAME }} |
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }} |
|
|
|
|
|
|
|
@ -17,13 +17,13 @@ jobs: |
|
|
|
uses: rlespinasse/github-slug-action@v4.4.1 |
|
|
|
|
|
|
|
- name: Prepare - Set up QEMU |
|
|
|
uses: docker/setup-qemu-action@v2.2.0 |
|
|
|
uses: docker/setup-qemu-action@v3.0.0 |
|
|
|
|
|
|
|
- name: Prepare - Set up Docker Buildx |
|
|
|
uses: docker/setup-buildx-action@v2.10.0 |
|
|
|
uses: docker/setup-buildx-action@v3.0.0 |
|
|
|
|
|
|
|
- name: Build - BUILD |
|
|
|
uses: docker/build-push-action@v4.2.1 |
|
|
|
uses: docker/build-push-action@v5.0.0 |
|
|
|
with: |
|
|
|
load: true |
|
|
|
build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}" |
|
|
|
@ -104,7 +104,7 @@ jobs: |
|
|
|
fi |
|
|
|
|
|
|
|
- name: Publish - Login to Docker Hub |
|
|
|
uses: docker/login-action@v2.2.0 |
|
|
|
uses: docker/login-action@v3.0.0 |
|
|
|
with: |
|
|
|
username: ${{ secrets.DOCKER_USERNAME }} |
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }} |
|
|
|
|