@@ -25,14 +25,14 @@ jobs:
25
25
changed : ${{ steps.changed_images.outputs.changed }}
26
26
27
27
steps :
28
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
29
29
with :
30
30
submodules : " recursive"
31
31
32
32
- name : Get Changed Files
33
33
id : changed_files
34
34
# pinning out of paranoia, this is the modern-node fork of jitterbit/get-changed-files
35
- uses : masesgroup/retrieve-changed-files@076a92699259d81d1c607bd91f0e1e9d45fd3151
35
+ uses : masesgroup/retrieve-changed-files@491e80760c0e28d36ca6240a27b1ccb8e1402c13
36
36
37
37
- name : Find image directories
38
38
id : images
@@ -89,17 +89,17 @@ jobs:
89
89
arch : ["aarch64", "amd64", "armhf", "arm/v7"]
90
90
91
91
steps :
92
- - uses : actions/checkout@v3
92
+ - uses : actions/checkout@v4
93
93
# - uses: docker/setup-qemu-action@v2
94
- - uses : docker/setup-buildx-action@v2
94
+ - uses : docker/setup-buildx-action@v3
95
95
- name : Log in to the Github Container registry
96
- uses : docker/login-action@v2
96
+ uses : docker/login-action@v3
97
97
with :
98
98
registry : ghcr.io
99
99
username : ${{ github.actor }}
100
100
password : ${{ secrets.GITHUB_TOKEN }}
101
101
102
- - uses : docker/metadata-action@v4
102
+ - uses : docker/metadata-action@v5
103
103
id : meta
104
104
with :
105
105
images : ghcr.io/offbyone/${{ matrix.image }}
@@ -113,7 +113,7 @@ jobs:
113
113
114
114
- name : Build and push by digest
115
115
id : build
116
- uses : docker/build-push-action@v4
116
+ uses : docker/build-push-action@v5
117
117
with :
118
118
context : ./${{ matrix.image }}
119
119
platforms : linux/${{ matrix.arch }}
@@ -152,14 +152,14 @@ jobs:
152
152
name : digests-${{ matrix.image }}
153
153
path : /tmp/digests-${{ matrix.image }}
154
154
- name : Set up Docker Buildx
155
- uses : docker/setup-buildx-action@v2
155
+ uses : docker/setup-buildx-action@v3
156
156
- name : Docker meta
157
157
id : meta
158
- uses : docker/metadata-action@v4
158
+ uses : docker/metadata-action@v5
159
159
with :
160
160
images : ghcr.io/offbyone/${{ matrix.image }}
161
161
- name : Log in to the Github Container registry
162
- uses : docker/login-action@v2
162
+ uses : docker/login-action@v3
163
163
with :
164
164
registry : ghcr.io
165
165
username : ${{ github.actor }}
0 commit comments