From 4a36b0f43022b9282058d6e2d7ed1c5b3ff1f089 Mon Sep 17 00:00:00 2001 From: Bart Koelman <104792814+bart-vmware@users.noreply.github.com> Date: Mon, 14 Sep 2026 11:51:16 +0200 Subject: [PATCH] Update actions in GitHub workflows to latest versions --- .github/workflows/build-and-stage.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-stage.yml b/.github/workflows/build-and-stage.yml index f3949ddf..a4a73064 100644 --- a/.github/workflows/build-and-stage.yml +++ b/.github/workflows/build-and-stage.yml @@ -24,7 +24,9 @@ jobs: name: Run tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 + with: + persist-credentials: false - name: Build test image run: docker build --target test -t initializr-web-test . @@ -37,7 +39,9 @@ jobs: runs-on: ubuntu-latest needs: test steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 + with: + persist-credentials: false - name: Login to container registry uses: docker/login-action@v4