@@ -12,26 +12,26 @@ jobs:
12
12
build :
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v4
16
16
with :
17
17
ref : ' main'
18
18
fetch-depth : 100
19
19
20
20
- name : Determine latest version
21
21
id : latest_version
22
- uses : flownative/action-git-latest-release@master
22
+ uses : flownative/action-git-latest-release@1
23
23
24
24
- run : |
25
25
sudo chmod -R ugo+rwX . && shopt -s dotglob && rm -rf *
26
26
27
- - uses : actions/checkout@v2
27
+ - uses : actions/checkout@v4
28
28
with :
29
29
ref : ${{ steps.latest_version.outputs.tag }}
30
30
fetch-depth : 100
31
31
32
32
- name : Docker meta
33
33
id : meta
34
- uses : docker/metadata-action@v3
34
+ uses : docker/metadata-action@v5
35
35
with :
36
36
flavor : |
37
37
latest=true
@@ -51,28 +51,28 @@ jobs:
51
51
52
52
- name : Set up QEMU
53
53
id : qemu
54
- uses : docker/setup-qemu-action@v1
54
+ uses : docker/setup-qemu-action@v3
55
55
56
56
-
57
57
name : Set up Docker Buildx
58
58
id : buildx
59
- uses : docker/setup-buildx-action@v1
59
+ uses : docker/setup-buildx-action@v3
60
60
61
61
- name : Login to Docker Hub
62
- uses : docker/login-action@v1
62
+ uses : docker/login-action@v3
63
63
with :
64
64
username : ${{ secrets.DOCKER_IO_REGISTRY_USER }}
65
65
password : ${{ secrets.DOCKER_IO_REGISTRY_PASSWORD }}
66
66
67
67
- name : Login to Google Artifacts Registry
68
- uses : docker/login-action@v1
68
+ uses : docker/login-action@v3
69
69
with :
70
70
registry : europe-docker.pkg.dev/flownative/docker
71
71
username : ' _json_key'
72
72
password : ${{ secrets.GOOGLE_ARTIFACTS_PASSWORD_DOCKER }}
73
73
74
74
- name : Build Docker image
75
- uses : docker/build-push-action@v2
75
+ uses : docker/build-push-action@v6
76
76
with :
77
77
context : .
78
78
platforms : linux/amd64,linux/arm64
@@ -92,16 +92,16 @@ jobs:
92
92
release-helm :
93
93
runs-on : ubuntu-latest
94
94
steps :
95
- - uses : actions/checkout@v2
95
+ - uses : actions/checkout@v4
96
96
with :
97
97
ref : main
98
98
99
99
- name : Determine latest version
100
100
id : latest_version
101
- uses : flownative/action-git-latest-release@master
101
+ uses : flownative/action-git-latest-release@1
102
102
103
103
- name : Release Helm chart
104
- uses : flownative/action-helm-release@v1
104
+ uses : flownative/action-helm-release@v2
105
105
with :
106
106
charts_folder : ' Helm'
107
107
chart_name : ' redis'
0 commit comments