From 627dbb27c44946d2da94a34c529e36567f1dbaf8 Mon Sep 17 00:00:00 2001 From: Michael Fox Date: Mon, 29 Sep 2025 17:18:38 -0600 Subject: [PATCH] ENG-1514 updated go to 1.25.1 --- .github/workflows/ci.yml | 5 ++++- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38e885e..f30e747 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: name: Test runs-on: ubuntu-latest permissions: - contents: write + contents: write steps: - name: Checkout uses: actions/checkout@v4 @@ -51,6 +51,7 @@ jobs: tags: | type=sha type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} - name: Setup QEMU uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 - name: Setup Docker Buildx @@ -69,3 +70,5 @@ jobs: push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags}} labels: ${{ steps.meta.outputs.labels }} + sbom: true + provenance: true diff --git a/Dockerfile b/Dockerfile index e3a7492..bfe3f90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.4-alpine AS builder +FROM golang:1.25.1-alpine AS builder # Add carrier user RUN adduser --uid 1000 --shell /bin/false -h /home/carrier -D carrier && \ diff --git a/go.mod b/go.mod index 8762e9e..da0add6 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/amplify-security/carrier -go 1.23.4 +go 1.25.1 require ( github.com/amplify-security/probe v0.1.0