Skip to content
Merged
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/Issues_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
outputs:
result: ${{env.content_analysis_response}}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

#Detect if the issue_title follows the regex expression
- name: Check Issue Title
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
acceptable_missing_info: 1
steps:
#Checkout the repo
- uses: actions/checkout@v5
- uses: actions/checkout@v6

#Removes conflicting characters before using the issue content as a script parameter
- name: Remove conflicting chars
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PR_merged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# Getting PR information from the commit SHA
- name: Getting PR information
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto_cherrypick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
exit 1
fi
shell: bash
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Start Cherrypick
uses: korthout/backport-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto_update_src_html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
MAIN_BRANCH: master # Target branch for operations
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # fetches all commits

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_dynamo_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Dynamo Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: Dynamo
repository: DynamoDS/Dynamo
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_dynamo_core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Dynamo Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: Dynamo
repository: DynamoDS/Dynamo
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Dynamo Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: Dynamo
repository: DynamoDS/Dynamo
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Dynamo Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: Dynamo
- name: Setup dotnet
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_file_size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Get changed files
id: get_changed_files
uses: tj-actions/changed-files@v46
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dynamo_bin_diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Dynamo Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: Dynamo
repository: DynamoDS/Dynamo
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Dynamo Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: master
ref: master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Generate changelog
id: generate_changelog
uses: metcalfc/changelog-generator@3f82cef08fe5dcf57c591fe165e70e1d5032e15a # v4.6.2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue_type_predicter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
# Checkout Dynamo repo
- name: Checkout Dynamo Repo
uses: actions/checkout@v5
uses: actions/checkout@v6

# Removes quotes before using the issue content as a script parameter
- name: Remove Quotes
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
# Checkout the IssuesTypePredicter repo (https://github.com/DynamoDS/IssuesTypePredicter)
- name: Checkout IssuesTypePredicter Repo
if: env.analysis_response == 'Valid'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: DynamoDS/IssuesTypePredicter
path: IssuesTypePredicter
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_description_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Extract Description
id: extract_description
Expand Down
Loading