From 02fcdf1579bf3aaf38998c2294bef91ed51e8462 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 23:20:38 -0400 Subject: [PATCH 1/5] chore(deps): Bump actions/checkout from 3 to 4 (#114) Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker.yml | 2 +- .github/workflows/test-builds.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 22c9aa4..f2f3556 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags diff --git a/.github/workflows/test-builds.yml b/.github/workflows/test-builds.yml index 60ab1b3..fc665fc 100644 --- a/.github/workflows/test-builds.yml +++ b/.github/workflows/test-builds.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags From 50f4731037d2cb62f83b673f842e874dcb459f28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 00:39:09 -0400 Subject: [PATCH 2/5] chore(deps): Bump docker/setup-buildx-action from 2 to 3 (#116) Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2 to 3. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker.yml | 2 +- .github/workflows/test-builds.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f2f3556..520222a 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -27,7 +27,7 @@ jobs: # https://github.com/marketplace/actions/docker-setup-buildx - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 # https://github.com/marketplace/actions/docker-login - name: Login to GitHub Packages diff --git a/.github/workflows/test-builds.yml b/.github/workflows/test-builds.yml index fc665fc..c116c99 100644 --- a/.github/workflows/test-builds.yml +++ b/.github/workflows/test-builds.yml @@ -27,7 +27,7 @@ jobs: # https://github.com/marketplace/actions/docker-setup-buildx - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 # https://github.com/marketplace/actions/docker-login - name: Login to GitHub Packages From 948556892dd3c35cbf9b92200560ea50db9df8d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 22:17:30 -0400 Subject: [PATCH 3/5] chore(deps): Bump docker/login-action from 2 to 3 (#117) Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tim Nolte --- .github/workflows/docker.yml | 2 +- .github/workflows/test-builds.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 520222a..0b6b359 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -31,7 +31,7 @@ jobs: # https://github.com/marketplace/actions/docker-login - name: Login to GitHub Packages - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} diff --git a/.github/workflows/test-builds.yml b/.github/workflows/test-builds.yml index c116c99..a5539c7 100644 --- a/.github/workflows/test-builds.yml +++ b/.github/workflows/test-builds.yml @@ -31,7 +31,7 @@ jobs: # https://github.com/marketplace/actions/docker-login - name: Login to GitHub Packages - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} From 92043bcd6d260438bb375dfbc8c44245c10a3a09 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 23:06:08 -0400 Subject: [PATCH 4/5] chore(deps): Bump docker/build-push-action from 4 to 5 (#118) Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4...v5) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tim Nolte --- .github/workflows/docker.yml | 4 ++-- .github/workflows/test-builds.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 0b6b359..b383f52 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -58,7 +58,7 @@ jobs: # https://github.com/marketplace/actions/build-and-push-docker-images - name: Build and Push Docker Image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 if: matrix.PHP_VERSION != env.PHP_STABLE_VERSION with: context: template @@ -81,7 +81,7 @@ jobs: # https://github.com/marketplace/actions/build-and-push-docker-images - name: Build and Push Docker Image - latest - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 if: matrix.PHP_VERSION == env.PHP_STABLE_VERSION with: context: template diff --git a/.github/workflows/test-builds.yml b/.github/workflows/test-builds.yml index a5539c7..c9ab744 100644 --- a/.github/workflows/test-builds.yml +++ b/.github/workflows/test-builds.yml @@ -49,7 +49,7 @@ jobs: # https://github.com/marketplace/actions/build-and-push-docker-images - name: Build Docker Image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: template platforms: linux/arm64 From 19a0f0d2a502ad2e64efff63a37962c7a6f5d849 Mon Sep 17 00:00:00 2001 From: Tim Nolte Date: Sun, 8 Oct 2023 14:42:51 -0400 Subject: [PATCH 5/5] fix(PHP): Upgrades PHP to Latest 8.1 & 8.2 Releases (#120) * Fixes #119. * Upgrades PHP 8.1 to 8.1.24 release. * Upgrades PHP 8.2 to 8.2.11 release. --- .github/workflows/docker.yml | 4 ++-- .github/workflows/test-builds.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b383f52..ade931a 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -8,7 +8,7 @@ on: env: OLS_VERSION: 1.7.18 - PHP_STABLE_VERSION: '8.2.10' + PHP_STABLE_VERSION: '8.2.11' REGISTRY: ghcr.io jobs: @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - PHP_VERSION: ['8.0.30','8.1.23','8.2.10'] + PHP_VERSION: ['8.0.30','8.1.24','8.2.11'] steps: - name: Checkout diff --git a/.github/workflows/test-builds.yml b/.github/workflows/test-builds.yml index c9ab744..509ad9d 100644 --- a/.github/workflows/test-builds.yml +++ b/.github/workflows/test-builds.yml @@ -8,7 +8,7 @@ on: env: OLS_VERSION: 1.7.18 - PHP_STABLE_VERSION: '8.2.10' + PHP_STABLE_VERSION: '8.2.11' REGISTRY: ghcr.io jobs: @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - PHP_VERSION: ['8.0.30','8.1.23','8.2.10'] + PHP_VERSION: ['8.0.30','8.1.24','8.2.11'] steps: - name: Checkout