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
2 changes: 1 addition & 1 deletion .github/workflows/precommitVersionBumps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pullRequestController.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Check for changed files
id: file_changes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pushMain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Merge main into alpha
uses: ./.github/actions/merge-branch
Expand All @@ -42,7 +42,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.PAT }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
id: checkout
with:
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
persist-credentials: false
token: ${{ secrets.PAT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semanticVersionBump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
PACKAGE_PATH: ${{ github.workspace }}/azure_ai/

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Run Python tests
uses: ./.github/actions/tests/python
Expand Down