Skip to content

Bump guzzlehttp/guzzle from 7.14.0 to 7.14.2 in the version-updates group #109

Bump guzzlehttp/guzzle from 7.14.0 to 7.14.2 in the version-updates group

Bump guzzlehttp/guzzle from 7.14.0 to 7.14.2 in the version-updates group #109

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# ------------------------------------------------------------------------------------
composer-install:
runs-on: ubuntu-24.04
strategy:
max-parallel: 3
matrix:
php-versions: [ '8.4', '8.5' ]
steps:
- uses: actions/checkout@v7
- uses: actions/cache@v6
with:
path: vendor/
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: zip
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
# ------------------------------------------------------------------------------------
build_and_push_container:
name: Create and publish Docker image to the Github Package Registry
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
- uses: actions/cache@v6
with:
path: vendor/
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Log in to the Container registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v6
with:
images: ghcr.io/${{ github.repository }}
- name: Build and push Docker image
uses: docker/build-push-action@v7
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}