Skip to content

Commit

Permalink
Update GitHub Action Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 28, 2024
1 parent 82326cf commit 139a6a5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
uses: rlespinasse/[email protected]

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.1.0
uses: docker/setup-qemu-action@v3.2.0

- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.4.0
uses: docker/setup-buildx-action@v3.5.0

- name: Prepare - Setup Node
uses: actions/[email protected]
with:
node-version: 18

- name: Build - BUILD
uses: docker/build-push-action@v6.4.1
uses: docker/build-push-action@v6.5.0
with:
load: true
build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}"
Expand Down Expand Up @@ -142,14 +142,14 @@ jobs:
- name: Publish - Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Publish - Build & Push for Multi-Platforms
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v6.4.1
uses: docker/build-push-action@v6.5.0
with:
build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}"
cache-from: type=gha
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/make-screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
uses: actions/[email protected]

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.1.0
uses: docker/setup-qemu-action@v3.2.0

- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.4.0
uses: docker/setup-buildx-action@v3.5.0

- name: Prepare - Setup Node
uses: actions/[email protected]
with:
node-version: 18

- name: Build - BUILD
uses: docker/build-push-action@v6.4.1
uses: docker/build-push-action@v6.5.0
with:
load: true
cache-from: type=gha
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ jobs:
uses: rlespinasse/[email protected]

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.1.0
uses: docker/setup-qemu-action@v3.2.0

- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.4.0
uses: docker/setup-buildx-action@v3.5.0

- name: Prepare - Setup Node
uses: actions/[email protected]
with:
node-version: 18

- name: Build - BUILD
uses: docker/build-push-action@v6.4.1
uses: docker/build-push-action@v6.5.0
with:
load: true
build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}"
Expand Down Expand Up @@ -136,13 +136,13 @@ jobs:
fi
- name: Publish - Login to Docker Hub
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Publish - Build & Push for Multi-Platforms
uses: docker/build-push-action@v6.4.1
uses: docker/build-push-action@v6.5.0
with:
build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}"
cache-from: type=gha
Expand Down

0 comments on commit 139a6a5

Please sign in to comment.