Skip to content

Commit e56f323

Browse files
committed
Update used Github actions versions to fix builds
1 parent f28a710 commit e56f323

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -297,14 +297,14 @@ jobs:
297297

298298
steps:
299299
- name: Check out the repo
300-
uses: actions/checkout@v2
300+
uses: actions/checkout@v4
301301
- name: Set up Docker Buildx
302302
id: buildx
303-
uses: docker/setup-buildx-action@v2
303+
uses: docker/setup-buildx-action@v3
304304
with:
305305
install: true
306306
- name: Cache Docker layers
307-
uses: actions/cache@v2
307+
uses: actions/cache@v4
308308
with:
309309
path: /tmp/.buildx-cache
310310
key: ${{ runner.os }}-buildx-dev-${{ matrix.debian-image }}-${{ matrix.ruby-version }}
@@ -314,14 +314,14 @@ jobs:
314314
${{ runner.os }}-buildx-dev
315315
- name: Login to Quay.io
316316
if: github.event_name != 'pull_request'
317-
uses: docker/login-action@v2
317+
uses: docker/login-action@v3
318318
with:
319319
registry: quay.io
320320
username: ${{ secrets.QUAY_USERNAME }}
321321
password: ${{ secrets.QUAY_PASSWORD }} # Get it at Settings → CLI Password
322322
- name: Build Docker image
323323
id: docker_build
324-
uses: docker/build-push-action@v4
324+
uses: docker/build-push-action@v6
325325
with:
326326
context: .
327327
file: Dockerfile

0 commit comments

Comments
 (0)