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/build-n-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Build Image
id: build-image
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: bash -n contrib/*
4 changes: 2 additions & 2 deletions Containerfile.wasp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder stage
FROM fedora:38 as builder
FROM fedora:45 as builder

# Install necessary tools for building
RUN dnf update -y && dnf install -y \
Expand All @@ -22,7 +22,7 @@ WORKDIR /workdir/app
RUN make wasp

# Final stage
FROM fedora:38
FROM fedora:45

# Copy the binary from the builder stage to the final image
COPY --from=builder /workdir/app/wasp /app/wasp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resources:
- multus.yaml
images:
- name: ghcr.io/k8snetworkplumbingwg/multus-cni
newTag: v3.8
newTag: v3.9
patchesJson6902:
- path: patch-args.yaml
target:
Expand Down