Skip to content

Commit b031816

Browse files
committed
Update GitHub actions versions
1 parent 0422ed0 commit b031816

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,22 +150,22 @@ jobs:
150150
151151
steps:
152152
- name: Checkout
153-
uses: actions/checkout@v3
153+
uses: actions/checkout@v4
154154

155155
- name: Set up QEMU
156-
uses: docker/setup-qemu-action@v2
156+
uses: docker/setup-qemu-action@v3
157157

158158
- name: Set up Docker Buildx
159-
uses: docker/setup-buildx-action@v2
159+
uses: docker/setup-buildx-action@v3
160160

161161
- name: Login to DockerHub
162-
uses: docker/login-action@v2
162+
uses: docker/login-action@v3
163163
with:
164164
username: jrei
165165
password: ${{ secrets.DOCKER_HUB_TOKEN }}
166166

167167
- name: Build and push ${{ matrix.name }}
168-
uses: docker/build-push-action@v3
168+
uses: docker/build-push-action@v6
169169
with:
170170
context: .
171171
file: ${{ matrix.dockerfile }}

systemd/centos/7.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:7
22

3-
ENV container docker
3+
ENV container=docker
44

55
RUN cd /lib/systemd/system/sysinit.target.wants/; \
66
for i in *; do [ $i = systemd-tmpfiles-setup.service ] || rm -f $i; done

systemd/centos/8.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:8
22

3-
ENV container docker
3+
ENV container=docker
44

55
RUN cd /lib/systemd/system/sysinit.target.wants/; \
66
for i in *; do [ $i = systemd-tmpfiles-setup.service ] || rm -f $i; done

0 commit comments

Comments
 (0)