From 470fb1117b4134911a3a490b924807f235683700 Mon Sep 17 00:00:00 2001 From: nhas Date: Mon, 10 Feb 2025 14:44:58 +1300 Subject: [PATCH] Switch back to latest, cut down testing time --- .github/workflows/test_and_deploy.yml | 13 ------------- Dockerfile | 2 +- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 6f593102..cbf37143 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -15,19 +15,6 @@ jobs: with: go-version: "1.23.1" - - name: Update repos - run: sudo apt update && sudo apt upgrade - - - name: Install build tools - run: sudo apt install -y make git npm gulp libpam0g-dev - - - name: Install NPM tools - working-directory: adminui/frontend - run: npm install - - - name: build - run: make release - - name: Test with the Go CLI run: go test -exec sudo -v ./... diff --git a/Dockerfile b/Dockerfile index ed606882..4103d667 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 # hadolint ignore=DL3007 -FROM golang:1.24rc3-bookworm AS builder +FROM golang:latest AS builder # hadolint ignore=DL3008 RUN apt-get update && \