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/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
PYTHON_PACKAGE: kedro_azureml
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Spellcheck
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: rojopolis/spellcheck-github-actions@0.52.0
name: Spellcheck
14 changes: 7 additions & 7 deletions .github/workflows/tests_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
needs: unit_tests
steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -93,7 +93,7 @@ jobs:
needs: unit_tests
steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: 'refs/pull/${{ github.event.client_payload.pull_request.number }}/merge'
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand All @@ -150,7 +150,7 @@ jobs:
e2e_config: ["e2e", "e2e_pipeline_data_passing"]
steps:
- name: "Checkout repository"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run E2E tests
uses: ./.github/actions/e2e_test
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
e2e_config: ["e2e", "e2e_pipeline_data_passing"]
steps:
- name: Run E2E tests
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: 'refs/pull/${{ github.event.client_payload.pull_request.number }}/merge'
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
PYTHON_PACKAGE: kedro_azureml
steps:
- name: Checkout the repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # necessary to enable merging, all the history is needed
- name: Set up Python ${{ matrix.python-version }}
Expand Down