Skip to content
Draft
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
skip: ${{ steps.check.outputs.skip }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 22.x
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push-to-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
outputs:
image_tags: ${{ steps.get-tags.outputs.image_tags }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
needs: [generate-tags]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Build
id: build
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
runs-on: ubuntu-latest
needs: [generate-tags]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Build
id: build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
publish-to-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event.release.tag_name }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV NODE_OPTIONS='--max-old-space-size=8192'
RUN npm ci
RUN npm run build

FROM registry.access.redhat.com/ubi9/go-toolset:1.24.6-1762373805 as proxy-build
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.3-1763633888 as proxy-build
WORKDIR /app
COPY proxy /app
USER 0
Expand Down
2 changes: 1 addition & 1 deletion Containerfile.ocp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV NODE_OPTIONS='--max-old-space-size=8192'
RUN npm ci
RUN npm run build:ocp

FROM registry.access.redhat.com/ubi9/go-toolset:1.24.6-1762373805 as proxy-build
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.3-1763633888 as proxy-build
WORKDIR /app
COPY proxy /app
USER 0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Monorepo containing UIs for [Flight Control](https://github.com/flightctl/flight

## Prerequisites

- `Git`, `Node.js v22.x`, `npm v10.x`, `rsync`, `go` (>= 1.24)
- `Git`, `Node.js v22.x`, `npm v10.x`, `rsync`, `go` (>= 1.25)

## Building

Expand Down
4 changes: 2 additions & 2 deletions proxy/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/flightctl/flightctl-ui

go 1.24.0
go 1.25.0

toolchain go1.24.6
toolchain go1.25.3

require (
github.com/flightctl/flightctl v1.0.0-main.0.20251127101911-da85f5a8551a
Expand Down