diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 3e0a25b..c2f9028 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -8,7 +8,7 @@ jobs: if: "!contains(github.event.pull_request.labels.*.name, 'skip-changelog')" steps: - name: Checkout the collection repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: "0" diff --git a/.github/workflows/release-branch.yml b/.github/workflows/release-branch.yml index 167bd73..5f908e4 100644 --- a/.github/workflows/release-branch.yml +++ b/.github/workflows/release-branch.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: "0" diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index 89be7ea..0aa2c38 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.branch_name }} token: ${{ secrets.gh_token }} diff --git a/.github/workflows/safe-to-test.yml b/.github/workflows/safe-to-test.yml index 65836f4..b34cbc9 100644 --- a/.github/workflows/safe-to-test.yml +++ b/.github/workflows/safe-to-test.yml @@ -12,7 +12,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }} steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check if the PR author is a collaborator id: authorization diff --git a/.github/workflows/tox-linters.yml b/.github/workflows/tox-linters.yml index 316c873..f2e9374 100644 --- a/.github/workflows/tox-linters.yml +++ b/.github/workflows/tox-linters.yml @@ -7,7 +7,7 @@ jobs: name: Runs code linting tests steps: - name: Code checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Code linting uses: ansible-network/github_actions/.github/actions/tox@main diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 24039d6..6ed0704 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -18,7 +18,7 @@ jobs: name: Run Tox based code tests steps: - name: Code checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run tests uses: ansible-network/github_actions/.github/actions/tox@main