Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cherryPickAutomation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'release-stable')
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Cherry pick action
Expand All @@ -30,7 +30,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'release-v2.5.x')
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Cherry pick action
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fetch_external_docs_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.base_target_branch }}

- name: Checkout external repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ inputs.base_source_organization }}/${{ inputs.base_source_repository }}
path: ./external_repositories/${{ inputs.base_source_repository }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

# pinning to SHA to mitigate possible supply chain attack
- name: Run markdownlint-cli
Expand All @@ -30,7 +30,7 @@ jobs:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v5
# uses: actions/checkout@v6
#
# # pinning to SHA to mitigate possible supply chain attack
# - name: Check for broken links
Expand Down