Skip to content

Commit 0afcc43

Browse files
Update GitHub Actions (#5140)
* chore: bump checkout action to version 5 Signed-off-by: Klaus Rettinghaus <[email protected]> * feat: add dependabot config for actions Signed-off-by: Klaus Rettinghaus <[email protected]> * chore: update previously missed actions Signed-off-by: Klaus Rettinghaus <[email protected]> --------- Signed-off-by: Klaus Rettinghaus <[email protected]> Co-authored-by: Ankita Katiyar <[email protected]>
1 parent 8cc21f8 commit 0afcc43

File tree

11 files changed

+25
-15
lines changed

11 files changed

+25
-15
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,13 @@ updates:
1111
interval: "weekly"
1212
labels:
1313
- "dependencies"
14+
- package-ecosystem: "github-actions"
15+
directory: "/"
16+
schedule:
17+
interval: "monthly"
18+
labels:
19+
- "github_actions"
20+
groups:
21+
actions:
22+
patterns:
23+
- "*"

.github/workflows/auto-merge-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5.0.0
1616
with:
1717
fetch-depth: 0
1818
token: ${{ secrets.GH_TAGGING_TOKEN }}

.github/workflows/benchmark-performance.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5.0.0
1818
with:
1919
path: "kedro"
2020

2121
- name: Set up Python
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v6.0.0
2323
with:
2424
python-version: '3.11'
2525

@@ -40,7 +40,7 @@ jobs:
4040
git config --global user.name "Kedro"
4141
4242
- name: Checkout target repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5.0.0
4444
with:
4545
repository: kedro-org/kedro-benchmark-results
4646
token: ${{ secrets.GH_TAGGING_TOKEN }}

.github/workflows/check-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
check-version:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5.0.0
1313
- name: Set up Python
14-
uses: actions/setup-python@v5
14+
uses: actions/setup-python@v6.0.0
1515
with:
1616
python-version: '3.11'
1717
- name: Install uv
@@ -45,9 +45,9 @@ jobs:
4545
needs.check-version.outputs.new_release == 'true'
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5.0.0
4949
- name: Set up Python
50-
uses: actions/setup-python@v5
50+
uses: actions/setup-python@v6.0.0
5151
with:
5252
python-version: '3.11'
5353
- name: Install uv

.github/workflows/detect-secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ inputs.os }}
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5.0.0
2020
with:
2121
ref: ${{ inputs.branch }}
2222
- name: Install the latest version of uv with Python ${{inputs.python-version}}

.github/workflows/docs-language-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: runner / vale
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5.0.0
1515
- uses: errata-ai/vale-action@reviewdog
1616
with:
1717
reporter: github-pr-check

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ${{ inputs.os }}
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5.0.0
2424
with:
2525
ref: ${{ inputs.branch }}
2626
- name: Install the latest version of uv with Python ${{inputs.python-version}}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ inputs.os }}
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5.0.0
2020
with:
2121
ref: ${{ inputs.branch }}
2222
- name: Install the latest version of uv with Python ${{inputs.python-version}}

.github/workflows/pip-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ inputs.os }}
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5.0.0
2020
with:
2121
ref: ${{ inputs.branch }}
2222
- name: Install the latest version of uv with Python ${{inputs.python-version}}

.github/workflows/sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5.0.0
1616
with:
1717
fetch-depth: 0
1818
token: ${{ secrets.GH_TAGGING_TOKEN }}

0 commit comments

Comments
 (0)