Skip to content

Commit bdd5940

Browse files
author
Alan Christie
committed
2 parents 14c9821 + db72b64 commit bdd5940

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.github/workflows/build-latest.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,18 @@ on:
2323
push:
2424
branches:
2525
- 'main'
26-
26+
schedule:
27+
# Build daily at 6:37am...
28+
- cron: '37 6 * * *'
29+
2730
jobs:
2831
build-latest:
2932
runs-on: ubuntu-latest
3033
steps:
3134
- name: Checkout
32-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3336
- name: Set up Python 3.10
34-
uses: actions/setup-python@v2
37+
uses: actions/setup-python@v3
3538
with:
3639
python-version: '3.10'
3740
- name: Install dependencies

.github/workflows/build-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v3
3737
- name: Inject slug/short variables
3838
uses: rlespinasse/[email protected]
3939
- name: Set up QEMU

.github/workflows/build-tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
- name: Inject slug/short variables
3434
uses: rlespinasse/[email protected]
3535
- name: Set up QEMU

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v3
3535
- name: Set up Python 3.10
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v3
3737
with:
3838
python-version: '3.10'
3939
- name: Install dependencies

local-parameters.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
22

3-
jo_image_tag: 19.2.2
3+
jo_image_tag: 19.2.7
44
jo_ingress_domain: kubernetes.docker.internal
5-
jo_dmapi_namespace: data-manager-api
5+
jo_namespaces: im-data-manager-api
6+
jo_namespace: im-data-manager-jupyter-operator
7+
jo_dmapi_namespace: im-data-manager-api
68

79
# The Kubernetes config file
810
jo_kubeconfig: ~/k8s-config/config-local

0 commit comments

Comments
 (0)