@@ -11,17 +11,17 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Check out code into the Go module directory
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
16
16
- name : Set up QEMU
17
- uses : docker/setup-qemu-action@v2
17
+ uses : docker/setup-qemu-action@v3
18
18
19
19
- name : Set up Docker Buildx
20
- uses : docker/setup-buildx-action@v2
20
+ uses : docker/setup-buildx-action@v3
21
21
22
22
- name : Docker meta
23
23
id : meta
24
- uses : docker/metadata-action@v4
24
+ uses : docker/metadata-action@v5
25
25
with :
26
26
images : iotaledger/hornet
27
27
tags : |
@@ -33,13 +33,13 @@ jobs:
33
33
type=match,pattern=v(\d+.\d+),suffix=-rc,group=1,enable=${{ contains(github.ref, '-rc') }}
34
34
35
35
- name : Login to DockerHub
36
- uses : docker/login-action@v2
36
+ uses : docker/login-action@v3
37
37
with :
38
38
username : ${{ secrets.IOTALEDGER_DOCKER_USERNAME }}
39
39
password : ${{ secrets.IOTALEDGER_DOCKER_PASSWORD }}
40
40
41
41
- name : Build and push to Dockerhub
42
- uses : docker/build-push-action@v3
42
+ uses : docker/build-push-action@v5
43
43
with :
44
44
file : ./Dockerfile
45
45
platforms : linux/amd64,linux/arm64
65
65
file_path : private_tangle.tar.gz
66
66
67
67
- name : Upload private_tangle.tar.gz file
68
- uses : Shopify/upload-to-release@v1.0.1
68
+ uses : Shopify/upload-to-release@v2
69
69
with :
70
70
name : HORNET-${{ steps.meta.outputs.version }}-private_tangle.tar.gz
71
71
path : private_tangle.tar.gz
@@ -77,17 +77,17 @@ jobs:
77
77
runs-on : ubuntu-latest
78
78
steps :
79
79
- name : Check out code into the Go module directory
80
- uses : actions/checkout@v3
80
+ uses : actions/checkout@v4
81
81
82
82
- name : Set up QEMU
83
- uses : docker/setup-qemu-action@v2
83
+ uses : docker/setup-qemu-action@v3
84
84
85
85
- name : Set up Docker Buildx
86
- uses : docker/setup-buildx-action@v2
86
+ uses : docker/setup-buildx-action@v3
87
87
88
88
- name : Docker meta
89
89
id : meta
90
- uses : docker/metadata-action@v4
90
+ uses : docker/metadata-action@v5
91
91
with :
92
92
images : iotaledger/hornet-nest
93
93
tags : |
@@ -99,13 +99,13 @@ jobs:
99
99
type=match,pattern=v(\d+.\d+),suffix=-rc,group=1,enable=${{ contains(github.ref, '-rc') }}
100
100
101
101
- name : Login to DockerHub
102
- uses : docker/login-action@v2
102
+ uses : docker/login-action@v3
103
103
with :
104
104
username : ${{ secrets.IOTALEDGER_DOCKER_USERNAME }}
105
105
password : ${{ secrets.IOTALEDGER_DOCKER_PASSWORD }}
106
106
107
107
- name : Build and push to Dockerhub
108
- uses : docker/build-push-action@v4
108
+ uses : docker/build-push-action@v5
109
109
with :
110
110
context : ./hornet-nest
111
111
platforms : linux/amd64,linux/arm64
0 commit comments