From 2cb97e4855ffd2584eb41b7b9b97bc7b6b454f1e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 20:16:30 +0000 Subject: [PATCH] Update actions/checkout action to v4.1.3 --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a8ca347..e592eebe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest name: create documentation inside docs-folder steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 with: fetch-depth: 0 persist-credentials: false @@ -26,7 +26,7 @@ jobs: # the form ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}/ - name: Check out code to ansible collection location - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 with: path: ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} fetch-depth: 0 @@ -68,7 +68,7 @@ jobs: name: create release draft needs: update_docs # the documentation should be updated before creating a new release steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 with: # checkout the main branch, because without the ref, the above commit ("update documentation") # isn't included and the push will fail @@ -135,7 +135,7 @@ jobs: # do a second checkout to prevent race situation # changelog gets updated but action works on old commit id - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 with: ref: main