From 0e25b2757895fa40e39c9bc8fdf5e4343175c3dc Mon Sep 17 00:00:00 2001 From: Steevan BARBOYON Date: Fri, 27 Feb 2026 00:10:28 +0100 Subject: [PATCH] Fix release --- .github/actions/ci-env/action.yml | 2 +- .github/workflows/build-docker-image-ci.yml | 2 +- .../workflows/build-docker-image-parallel-processes.yml | 9 +++++++-- .github/workflows/build-docker-image-release.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 6 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.github/actions/ci-env/action.yml b/.github/actions/ci-env/action.yml index df3da32..6af1df9 100644 --- a/.github/actions/ci-env/action.yml +++ b/.github/actions/ci-env/action.yml @@ -5,7 +5,7 @@ runs: steps: - name: Composer cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: vendor key: composer-${{ hashFiles('composer.json') }} diff --git a/.github/workflows/build-docker-image-ci.yml b/.github/workflows/build-docker-image-ci.yml index 182335d..6a33664 100644 --- a/.github/workflows/build-docker-image-ci.yml +++ b/.github/workflows/build-docker-image-ci.yml @@ -12,7 +12,7 @@ jobs: name: Build ci Docker image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Log in to GitHub Container Registry diff --git a/.github/workflows/build-docker-image-parallel-processes.yml b/.github/workflows/build-docker-image-parallel-processes.yml index 61c9229..0ac0a15 100644 --- a/.github/workflows/build-docker-image-parallel-processes.yml +++ b/.github/workflows/build-docker-image-parallel-processes.yml @@ -1,15 +1,20 @@ name: Build parallel-processes Docker images on: - workflow_dispatch: ~ + workflow_dispatch: + inputs: + version: + description: Version + required: true jobs: build: name: Build parallel-processes Docker images runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/build-docker-image-parallel-processes with: + version: ${{ github.event.inputs.version }} DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} diff --git a/.github/workflows/build-docker-image-release.yml b/.github/workflows/build-docker-image-release.yml index e07f3df..d76f40e 100644 --- a/.github/workflows/build-docker-image-release.yml +++ b/.github/workflows/build-docker-image-release.yml @@ -12,7 +12,7 @@ jobs: name: Build release Docker image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Log in to GitHub Container Registry diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fb9a80..0941e6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,10 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Cache vendor - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: vendor key: composer-${{ hashFiles('composer.json') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 463ce5f..9851d39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,10 +16,10 @@ jobs: name: Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Composer cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: vendor key: composer-${{ hashFiles('composer.json') }} @@ -29,7 +29,7 @@ jobs: - id: create-pull-request name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: title: Release ${{ github.event.inputs.version }} commit-message: Release ${{ github.event.inputs.version }}