Skip to content

Commit

Permalink
Merge pull request kubeflow#194 from HumairAK/stable
Browse files Browse the repository at this point in the history
Merge v1.5.1 to Stable
  • Loading branch information
HumairAK authored Jan 10, 2024
2 parents 54554bb + f11b902 commit 64003cf
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 5 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/add-issues-to-dsp-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Add Issues to ODH Data Science Pipelines Planning Project
on:
issues:
types:
- opened
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/opendatahub-io/projects/43
github-token: ${{ secrets.GH_TOKEN_PROJECT_EDIT }}
14 changes: 14 additions & 0 deletions .github/workflows/add-issues-to-odh-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Add Issues to ODH Feature Tracking Project
on:
issues:
types:
- opened
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/opendatahub-io/projects/40
github-token: ${{ secrets.GH_TOKEN_PROJECT_EDIT }}
2 changes: 1 addition & 1 deletion backend/Dockerfile.persistenceagent
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN go-licenses csv ./backend/src/agent/persistence > /tmp/licenses.csv && \
diff /tmp/licenses.csv backend/third_party_licenses/persistence_agent.csv && \
go-licenses save ./backend/src/agent/persistence --save_path /tmp/NOTICES

FROM alpine:3.11
FROM alpine:3.16.7
WORKDIR /bin

COPY --from=builder /bin/persistence_agent /bin/persistence_agent
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile.scheduledworkflow
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN go-licenses csv ./backend/src/crd/controller/scheduledworkflow > /tmp/licens
diff /tmp/licenses.csv backend/third_party_licenses/swf.csv && \
go-licenses save ./backend/src/crd/controller/scheduledworkflow --save_path /tmp/NOTICES

FROM alpine:3.11
FROM alpine:3.16.7
WORKDIR /bin

COPY --from=builder /bin/controller /bin/controller
Expand Down
2 changes: 1 addition & 1 deletion backend/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# Generate client code (go & json) from API protocol buffers
FROM golang:1.15.10 as generator
FROM golang:1.21.0 as generator
ENV GRPC_GATEWAY_VERSION v1.9.0
ENV GO_SWAGGER_VERSION v0.18.0
ENV GOLANG_PROTOBUF_VERSION v1.5.1
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN npm i -D license-checker
RUN node gen_licenses . && node gen_licenses server && \
cat dependency-licenses.txt >> server/dependency-licenses.txt

FROM node:14.18.2-alpine
FROM node:14.21.3-alpine

COPY --from=build ./src/frontend/server /server
COPY --from=build ./src/frontend/build /client
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fluent/fluentd:v1.11-1
FROM fluent/fluentd:v1.16.2-1.0
MAINTAINER fenglixa <fenglixa@cn.ibm.com>

USER root
Expand Down

0 comments on commit 64003cf

Please sign in to comment.