diff --git a/.circleci/config.yml b/.circleci/config.yml index 4d25cc0..0d9cc18 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,21 +6,21 @@ orbs: parameters: cosign-version: type: string - default: '2.2.4' + default: '2.4.0' executors: node: docker: - - image: node:20-slim + - image: node:22-slim golangci-lint: docker: - - image: golangci/golangci-lint:v1.59 + - image: golangci/golangci-lint:v1.60 golang-previous: docker: - - image: golang:1.21 + - image: golang:1.22 golang-latest: docker: - - image: golang:1.22 + - image: golang:1.23 jobs: lint-markdown: diff --git a/build/docker/scs-build/Dockerfile b/build/docker/scs-build/Dockerfile index 6e209d0..ac893b8 100644 --- a/build/docker/scs-build/Dockerfile +++ b/build/docker/scs-build/Dockerfile @@ -1,9 +1,9 @@ -# Copyright (c) 2022, Sylabs Inc. All rights reserved. +# Copyright (c) 2022-2024, Sylabs Inc. All rights reserved. # This software is licensed under a 3-clause BSD license. Please consult the # LICENSE.md file distributed with the sources of this project regarding your # rights to use or distribute this software. -FROM alpine:latest AS build-stage +FROM alpine:3 AS build-stage RUN apk --no-cache add ca-certificates FROM alpine:latest