Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:

- run: echo ${{ steps.vars.outputs.sha7 }} > ./out/sha7

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: fider-image
path: out/
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
with:
node-version: 22.x
cache: 'npm'
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: fider-image
path: ./out
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
with:
node-version: 22.x
cache: 'npm'
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: fider-image
path: ./out
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-pr-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
- uses: actions/checkout@v6

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}

- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
push: true
context: .
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ jobs:
ref: ${{ github.event.workflow_run.head_sha }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}

- name: build and push docker image (pull_request)
if: ${{ github.event.workflow_run.event == 'pull_request' }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
push: true
context: .
Expand All @@ -47,7 +47,7 @@ jobs:

- name: build and push docker image (push branch)
if: ${{ github.event.workflow_run.event == 'push' }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
push: true
context: .
Expand All @@ -61,7 +61,7 @@ jobs:

- name: build and push docker image (push tag)
if: ${{ github.event.workflow_run.event == 'release' }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
push: true
context: .
Expand Down
Loading