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
2 changes: 1 addition & 1 deletion .github/workflows/create-a-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
outputs:
test_files: ${{ steps.list.outputs.test_files }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- id: list
uses: ./.github/actions/list-tests-dir
with:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
test_file: ${{ fromJson(needs.list-integration-tests.outputs.test_files) }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.ref }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-slips-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

# clone slips and checkout branch
# By default it checks out only one commit
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: 'master'
# Fetch all history for all tags and branches
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
outputs:
test_files: ${{ steps.list.outputs.test_files }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- id: list
uses: ./.github/actions/list-tests-dir
with:
Expand All @@ -41,7 +41,7 @@ jobs:
TF_ENABLE_ONEDNN_OPTS: 0

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.ref }}
fetch-depth: 0
Expand Down
Loading