Skip to content

Commit

Permalink
Update to current versions of actions.
Browse files Browse the repository at this point in the history
Bug: T348873
  • Loading branch information
vivian-rook committed Oct 13, 2023
1 parent 246ffbc commit 970ef1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}

Expand All @@ -28,18 +28,18 @@ jobs:
git checkout ${{ github.head_ref }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to Quay.io
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.quay_user }}
password: ${{ secrets.quay_password }}

- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
push: true
context: images/${{ inputs.imagename }}
Expand Down

0 comments on commit 970ef1c

Please sign in to comment.