From 78f85ba7303a9ef4ae8b7a1280b612608c8c73b3 Mon Sep 17 00:00:00 2001 From: Bart Koelman <104792814+bart-vmware@users.noreply.github.com> Date: Fri, 22 May 2026 15:12:40 +0200 Subject: [PATCH] Update GHA versions --- .github/workflows/build_config_server.yaml | 6 +++--- .github/workflows/build_eureka_server.yaml | 6 +++--- .github/workflows/build_springboot_admin_server.yaml | 6 +++--- .github/workflows/build_uaa_server.yaml | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build_config_server.yaml b/.github/workflows/build_config_server.yaml index 998dc2f..516bc8c 100644 --- a/.github/workflows/build_config_server.yaml +++ b/.github/workflows/build_config_server.yaml @@ -33,7 +33,7 @@ jobs: name: Build and push image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Build Image run: ./build.ps1 -Name '${{ env.IMAGE_NAME }}' -Registry '${{ env.REGISTRY }}' -Tag '${{ env.TAG }}' @@ -42,7 +42,7 @@ jobs: TAG: ${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.number) || '' }} - name: Login to container registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ vars.DOCKER_REGISTRY }} username: ${{ secrets.DOCKER_USERNAME }} @@ -52,7 +52,7 @@ jobs: run: docker push --all-tags ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Post or update PR comment with image run instructions - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: ${{ github.event_name == 'pull_request' }} with: script: | diff --git a/.github/workflows/build_eureka_server.yaml b/.github/workflows/build_eureka_server.yaml index 6ac942a..d62c256 100644 --- a/.github/workflows/build_eureka_server.yaml +++ b/.github/workflows/build_eureka_server.yaml @@ -33,7 +33,7 @@ jobs: name: Build and push image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Build Image run: ./build.ps1 -Name '${{ env.IMAGE_NAME }}' -Registry '${{ env.REGISTRY }}' -Tag '${{ env.TAG }}' @@ -42,7 +42,7 @@ jobs: TAG: ${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.number) || '' }} - name: Login to container registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ vars.DOCKER_REGISTRY }} username: ${{ secrets.DOCKER_USERNAME }} @@ -52,7 +52,7 @@ jobs: run: docker push --all-tags ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Post or update PR comment with image run instructions - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: ${{ github.event_name == 'pull_request' }} with: script: | diff --git a/.github/workflows/build_springboot_admin_server.yaml b/.github/workflows/build_springboot_admin_server.yaml index d2ba5cf..5c8f4d9 100644 --- a/.github/workflows/build_springboot_admin_server.yaml +++ b/.github/workflows/build_springboot_admin_server.yaml @@ -33,7 +33,7 @@ jobs: name: Build and push image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Build Image run: ./build.ps1 -Name '${{ env.IMAGE_NAME }}' -Registry '${{ env.REGISTRY }}' -Tag '${{ env.TAG }}' @@ -42,7 +42,7 @@ jobs: TAG: ${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.number) || '' }} - name: Login to container registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ vars.DOCKER_REGISTRY }} username: ${{ secrets.DOCKER_USERNAME }} @@ -52,7 +52,7 @@ jobs: run: docker push --all-tags ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Post or update PR comment with image run instructions - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: ${{ github.event_name == 'pull_request' }} with: script: | diff --git a/.github/workflows/build_uaa_server.yaml b/.github/workflows/build_uaa_server.yaml index eb7504a..5c6cc61 100644 --- a/.github/workflows/build_uaa_server.yaml +++ b/.github/workflows/build_uaa_server.yaml @@ -37,7 +37,7 @@ jobs: name: Build and push image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Build Image run: ./build.ps1 -Name '${{ env.IMAGE_NAME }}' -Registry '${{ env.REGISTRY }}' -Tag '${{ env.TAG }}' @@ -46,7 +46,7 @@ jobs: TAG: ${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.number) || '' }} - name: Login to container registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ vars.DOCKER_REGISTRY }} username: ${{ secrets.DOCKER_USERNAME }} @@ -56,7 +56,7 @@ jobs: run: docker push --all-tags ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Post or update PR comment with image run instructions - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: ${{ github.event_name == 'pull_request' }} with: script: |