Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-schedule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- 8.5
steps:
- name: Check Out
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Login to Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: nayleen
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
- php: ${{ inputs.php-version }}
steps:
- name: Check Out
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Login to Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: nayleen
Expand All @@ -56,7 +56,7 @@ jobs:

- name: Docker Metadata
id: docker-metadata
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
env:
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest-descriptor,index-descriptor
with:
Expand All @@ -71,7 +71,7 @@ jobs:
type=raw,value=${{ matrix.php }}-${{ matrix.arch }}

- name: Build and Push Docker Images
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
annotations: ${{ steps.docker-metadata.outputs.annotations }}
build-args: "PHP_VERSION=${{ matrix.php }}"
Expand All @@ -89,7 +89,7 @@ jobs:
packages: write
steps:
- name: Login to Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: nayleen
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
- 8.5
steps:
- name: Check Out
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Login to Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: nayleen
Expand All @@ -66,7 +66,7 @@ jobs:
driver-opts: network=host

- name: Build Local Image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
env:
DOCKER_BUILD_SUMMARY: false
DOCKER_BUILD_RECORD_UPLOAD: false
Expand Down