Skip to content

Commit

Permalink
update image build actions to latest versions
Browse files Browse the repository at this point in the history
this should resolve some deprecation warnings for some things that will soon break
  • Loading branch information
brettmc committed Feb 5, 2024
1 parent 36e2b7f commit 54ded5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-otel-php-base-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ jobs:
steps:

- name: check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push ${{ matrix.php-version }} to ghcr.io
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
push: true
file: docker/Dockerfile
Expand Down

0 comments on commit 54ded5e

Please sign in to comment.