Skip to content

Commit e375ea4

Browse files
committed
Update build workflow
1 parent 5f9e6c1 commit e375ea4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Diff for: .github/workflows/docker.build.yaml

+12-12
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
with:
1717
ref: 'main'
1818
fetch-depth: 100
1919

2020
- name: Determine latest version
2121
id: latest_version
22-
uses: flownative/action-git-latest-release@master
22+
uses: flownative/action-git-latest-release@1
2323

2424
- run: |
2525
sudo chmod -R ugo+rwX . && shopt -s dotglob && rm -rf *
2626
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2828
with:
2929
ref: ${{ steps.latest_version.outputs.tag }}
3030
fetch-depth: 100
3131

3232
- name: Docker meta
3333
id: meta
34-
uses: docker/metadata-action@v3
34+
uses: docker/metadata-action@v5
3535
with:
3636
flavor: |
3737
latest=true
@@ -51,28 +51,28 @@ jobs:
5151
5252
- name: Set up QEMU
5353
id: qemu
54-
uses: docker/setup-qemu-action@v1
54+
uses: docker/setup-qemu-action@v3
5555

5656
-
5757
name: Set up Docker Buildx
5858
id: buildx
59-
uses: docker/setup-buildx-action@v1
59+
uses: docker/setup-buildx-action@v3
6060

6161
- name: Login to Docker Hub
62-
uses: docker/login-action@v1
62+
uses: docker/login-action@v3
6363
with:
6464
username: ${{ secrets.DOCKER_IO_REGISTRY_USER }}
6565
password: ${{ secrets.DOCKER_IO_REGISTRY_PASSWORD }}
6666

6767
- name: Login to Google Artifacts Registry
68-
uses: docker/login-action@v1
68+
uses: docker/login-action@v3
6969
with:
7070
registry: europe-docker.pkg.dev/flownative/docker
7171
username: '_json_key'
7272
password: ${{ secrets.GOOGLE_ARTIFACTS_PASSWORD_DOCKER }}
7373

7474
- name: Build Docker image
75-
uses: docker/build-push-action@v2
75+
uses: docker/build-push-action@v6
7676
with:
7777
context: .
7878
platforms: linux/amd64,linux/arm64
@@ -92,16 +92,16 @@ jobs:
9292
release-helm:
9393
runs-on: ubuntu-latest
9494
steps:
95-
- uses: actions/checkout@v2
95+
- uses: actions/checkout@v4
9696
with:
9797
ref: main
9898

9999
- name: Determine latest version
100100
id: latest_version
101-
uses: flownative/action-git-latest-release@master
101+
uses: flownative/action-git-latest-release@1
102102

103103
- name: Release Helm chart
104-
uses: flownative/action-helm-release@v1
104+
uses: flownative/action-helm-release@v2
105105
with:
106106
charts_folder: 'Helm'
107107
chart_name: 'redis'

0 commit comments

Comments
 (0)