From 4bb4feeba00d892fc04c527a24942b315ecce872 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 2 Aug 2026 14:12:47 +0000 Subject: [PATCH] Bump the actions group with 4 updates Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go), [actions/github-script](https://github.com/actions/github-script) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/checkout` from 6 to 7 - [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/v6...v7) Updates `actions/setup-go` from 6 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6...v7) Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/docker-build.yml | 4 ++-- .github/workflows/docker-publish.yml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 190f5e4..2e14d93 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -8,8 +8,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 - - uses: actions/setup-go@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-go@v7 with: go-version: stable cache-dependency-path: | diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 2fb4f2e..7a35ea1 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -21,7 +21,7 @@ jobs: xdebug_version: ${{ steps.package-version.outputs.version }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Get Docker Hub WordPress latest version tag id: image-tag uses: ./.github/actions/get-dockerhub-version-tag @@ -39,7 +39,7 @@ jobs: run: echo "tag=wp${{ steps.image-tag.outputs.tag }}-xdebug${{ steps.package-version.outputs.version }}" >> "$GITHUB_OUTPUT" - name: Check if tag already exists id: check-tag - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | try { @@ -62,8 +62,8 @@ jobs: XDEBUG_VERSION: ${{ needs.metadata.outputs.xdebug_version }} steps: - - uses: actions/checkout@v6 - - uses: actions/setup-go@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-go@v7 with: go-version: stable cache-dependency-path: | @@ -81,7 +81,7 @@ jobs: packages: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build image run: | docker build \ @@ -90,12 +90,12 @@ jobs: --tag "$IMAGE_NAME" \ . - name: Login to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ github.repository_owner }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} @@ -118,7 +118,7 @@ jobs: docker push --all-tags "$GH_IMAGE_ID" docker push --all-tags "$DH_IMAGE_ID" - name: Create version tag - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.git.createRef({