diff --git a/.github/workflows/image-builder.yml b/.github/workflows/image-builder.yml index f71e45b..6987156 100644 --- a/.github/workflows/image-builder.yml +++ b/.github/workflows/image-builder.yml @@ -5,7 +5,7 @@ on: branches: [main] tags: - v* - pull_request_target: + pull_request: types: [opened, reopened, synchronize] env: diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 3beaab9..52fa63b 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -4,7 +4,7 @@ on: push: branches: - main - pull_request_target: + pull_request: types: [opened, reopened, synchronize] jobs: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e7968bc..6107fea 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -5,7 +5,7 @@ on: branches: [main] tags: - v* - pull_request_target: + pull_request: types: [opened, reopened, synchronize] jobs: diff --git a/Dockerfile b/Dockerfile index 680270f..ae6738c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21 AS builder +FROM golang:1.22 AS builder ARG TARGETOS=linux ARG TARGETARCH=amd64