Skip to content

Commit 43b7c98

Browse files
Add dependabot to monitor GitHub Actions and Python dependencies (#984)
Signed-off-by: Pedro Kaj Kjellerup Nacht <pnacht@google.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a2353af commit 43b7c98

File tree

3 files changed

+27
-12
lines changed

3 files changed

+27
-12
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "monthly"
12+
groups:
13+
github-actions:
14+
patterns:
15+
- "*"

.github/workflows/actions.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
name: Test the code with tf.keras
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Set up Python 3.10
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: '3.10'
2323
- name: Get pip cache dir
@@ -48,9 +48,9 @@ jobs:
4848
backend: [tensorflow, jax, torch]
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252
- name: Set up Python 3.10
53-
uses: actions/setup-python@v4
53+
uses: actions/setup-python@v5
5454
with:
5555
python-version: '3.10'
5656
- name: Get pip cache dir
@@ -81,9 +81,9 @@ jobs:
8181
name: Check the code format
8282
runs-on: ubuntu-latest
8383
steps:
84-
- uses: actions/checkout@v3
84+
- uses: actions/checkout@v4
8585
- name: Set up Python 3.10
86-
uses: actions/setup-python@v4
86+
uses: actions/setup-python@v5
8787
with:
8888
python-version: '3.10'
8989
- name: Get pip cache dir
@@ -106,9 +106,9 @@ jobs:
106106
if: github.event_name == 'release' && github.event.action == 'created'
107107
runs-on: ubuntu-latest
108108
steps:
109-
- uses: actions/checkout@v3
109+
- uses: actions/checkout@v4
110110
- name: Set up Python 3.10
111-
uses: actions/setup-python@v4
111+
uses: actions/setup-python@v5
112112
with:
113113
python-version: '3.10'
114114
- name: Get pip cache dir
@@ -131,9 +131,9 @@ jobs:
131131
if: github.event_name == 'release' && github.event.action == 'created'
132132
runs-on: ubuntu-latest
133133
steps:
134-
- uses: actions/checkout@v3
134+
- uses: actions/checkout@v4
135135
- name: Set up Python
136-
uses: actions/setup-python@v4
136+
uses: actions/setup-python@v5
137137
with:
138138
python-version: '3.10'
139139
- name: Get pip cache dir

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
name: Run tests
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python 3.10
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.10'
2121
- name: Get pip cache dir

0 commit comments

Comments
 (0)