From d70f79adb50b8d7df6df5845daed86be73566587 Mon Sep 17 00:00:00 2001 From: "pactflow-renovate-bot[bot]" <186667433+pactflow-renovate-bot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 17:15:13 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 Ref: PACT-445 --- .github/workflows/ProviderDesignFeedback.yml | 2 +- .github/workflows/build.yml | 6 +++--- .../workflows/contract_requiring_verification_published.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ProviderDesignFeedback.yml b/.github/workflows/ProviderDesignFeedback.yml index 6d1c34d5..f8ce66c0 100644 --- a/.github/workflows/ProviderDesignFeedback.yml +++ b/.github/workflows/ProviderDesignFeedback.yml @@ -36,7 +36,7 @@ jobs: # working alongside Bi-Directional Contract Testing runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 - name: get version of OAS run: | sudo snap install yq diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a5b1342d..7dec1861 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6 with: node-version: '24' @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest needs: test steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 - run: docker pull pactfoundation/pact-cli:latest - name: Can I deploy? run: GIT_BRANCH=${GITHUB_REF:11} make can_i_deploy @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest needs: can-i-deploy steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 - run: docker pull pactfoundation/pact-cli:latest - name: Deploy run: GIT_BRANCH=${GITHUB_REF:11} make deploy diff --git a/.github/workflows/contract_requiring_verification_published.yml b/.github/workflows/contract_requiring_verification_published.yml index 2e45a305..683820ea 100644 --- a/.github/workflows/contract_requiring_verification_published.yml +++ b/.github/workflows/contract_requiring_verification_published.yml @@ -27,10 +27,10 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout default branch if user manually provides pact URL - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 if: ${{ github.event.inputs.PACT_URL }} - name: checkout specific SHA if webhook providers pact URL - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 if: ${{ github.event.client_payload.pact_url }} with: ref: ${{env.GIT_COMMIT}}