mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
Bump golang from 1.18.4-bullseye to 1.19.0-bullseye (#7039)
* Bump golang from 1.18.4-bullseye to 1.19.0-bullseye Bumps golang from 1.18.4-bullseye to 1.19.0-bullseye. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update other golang deps as well * Update missing go mods Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tomas Touceda <chiiph@gmail.com>
This commit is contained in:
parent
c8cdddf0ea
commit
6f0e0873ca
6
.github/workflows/goreleaser-orbit.yaml
vendored
6
.github/workflows/goreleaser-orbit.yaml
vendored
@ -4,7 +4,7 @@ on:
|
||||
push:
|
||||
tags:
|
||||
- 'orbit-*'
|
||||
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
@ -25,7 +25,7 @@ jobs:
|
||||
run: git tag $(echo ${{ github.ref_name }} | sed -e 's/orbit-//g')
|
||||
|
||||
- name: Import signing keys
|
||||
env:
|
||||
env:
|
||||
APPLE_APPLICATION_CERTIFICATE: ${{ secrets.APPLE_APPLICATION_CERTIFICATE }}
|
||||
APPLE_APPLICATION_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_APPLICATION_CERTIFICATE_PASSWORD }}
|
||||
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
|
||||
@ -42,7 +42,7 @@ jobs:
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a # v2
|
||||
with:
|
||||
go-version: 1.18.2
|
||||
go-version: 1.19.0
|
||||
|
||||
- name: Run GoReleaser
|
||||
run: go run github.com/goreleaser/goreleaser@v1.9.2 release --rm-dist -f orbit/.goreleaser.yml
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM --platform=linux/amd64 golang:1.18.4-bullseye
|
||||
FROM --platform=linux/amd64 golang:1.19.0-bullseye
|
||||
LABEL maintainer="Fleet Developers <hello@fleetdm.com>"
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM golang:1.18.4-alpine
|
||||
FROM golang:1.19.0-alpine
|
||||
|
||||
ARG ENROLL_SECRET
|
||||
ARG HOST_COUNT
|
||||
|
2
go.mod
2
go.mod
@ -1,6 +1,6 @@
|
||||
module github.com/fleetdm/fleet/v4
|
||||
|
||||
go 1.17
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
cloud.google.com/go/pubsub v1.16.0
|
||||
|
@ -1,7 +1,7 @@
|
||||
FROM golang:1.18.0
|
||||
FROM golang:1.19.0
|
||||
ARG TAG
|
||||
RUN apt update && apt upgrade -y && apt install npm yarnpkg -y && ln -s /usr/bin/yarnpkg /usr/bin/yarn
|
||||
RUN git clone -b $TAG https://github.com/fleetdm/fleet.git && cd /go/fleet/cmd/osquery-perf/ && go build .
|
||||
|
||||
FROM golang:1.18.0
|
||||
FROM golang:1.19.0
|
||||
COPY --from=0 /go/fleet/cmd/osquery-perf/osquery-perf /go/osquery-perf
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM golang:1.18-alpine AS builder
|
||||
FROM golang:1.19-alpine AS builder
|
||||
RUN apk update && apk add --no-cache git curl openssl unzip
|
||||
WORKDIR /build
|
||||
COPY . .
|
||||
|
@ -1,6 +1,6 @@
|
||||
module github.com/fleetdm/fleet/infrastructure/demo/PreProvisioner/lambda
|
||||
|
||||
go 1.18
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
github.com/aws/aws-lambda-go v1.29.0
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM golang:1.18-alpine AS builder
|
||||
FROM golang:1.19-alpine AS builder
|
||||
WORKDIR /build
|
||||
COPY . .
|
||||
RUN go get -d -v
|
||||
|
@ -1,6 +1,6 @@
|
||||
module github.com/fleetdm/fleet/infrastructure/demo/JITProvisioner/lambda
|
||||
|
||||
go 1.18
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
github.com/akrylysov/algnhsa v0.12.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM golang:1.18-alpine AS builder
|
||||
FROM golang:1.19-alpine AS builder
|
||||
WORKDIR /build
|
||||
COPY . .
|
||||
RUN go get -d -v
|
||||
|
@ -1,6 +1,6 @@
|
||||
module github.com/fleetdm/fleet/infrastructure/demo/Monitoring/lambda
|
||||
|
||||
go 1.18
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
github.com/aws/aws-lambda-go v1.32.1
|
||||
|
@ -6,13 +6,13 @@ RUN cargo install --version 0.16.0 apple-codesign \
|
||||
&& curl -sSf $transporter_url -o transporter_install.sh \
|
||||
&& sh transporter_install.sh --target transporter --accept --noexec
|
||||
|
||||
FROM golang:1.18.4-bullseye
|
||||
FROM golang:1.19.0-bullseye
|
||||
|
||||
RUN apt-get update \
|
||||
&& dpkg --add-architecture i386 \
|
||||
&& apt update \
|
||||
&& apt install -y --no-install-recommends ca-certificates cpio libxml2 wine wine32 libgtk-3-0 \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# copy macOS dependencies
|
||||
COPY --from=fleetdm/bomutils:latest /usr/bin/mkbom /usr/local/bin/xar /usr/bin/
|
||||
|
@ -1,6 +1,6 @@
|
||||
module github.com/fleetdm/fleet/infrastructure/demo/PreProvisioner/lambda
|
||||
|
||||
go 1.18
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
github.com/aws/aws-lambda-go v1.29.0
|
||||
|
Loading…
Reference in New Issue
Block a user