diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index 4d1b5408..afec293a 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -30,7 +30,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: '1.23' + go-version: '1.21' - run: go version - name: Install dependencies run: | @@ -61,7 +61,7 @@ jobs: with: source_branch: "release/${{ env.LATEST_RELEASE }}" destination_branch: "master" - pr_reviewer: "lgarofalo,cloudflare/ssl-tls-team" + pr_reviewer: "cloudflare/ssltls" pr_assignee: "lgarofalo" github_token: ${{ secrets.GITHUB_TOKEN }} - name: Google Chat Notification diff --git a/.github/workflows/scheduled-release.yml b/.github/workflows/scheduled-release.yml index 434608b8..e89a91f6 100644 --- a/.github/workflows/scheduled-release.yml +++ b/.github/workflows/scheduled-release.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: '1.23' + go-version: '1.21' - run: go version - name: Install dependencies run: | @@ -38,7 +38,7 @@ jobs: with: source_branch: "release/${{ env.LATEST_RELEASE }}" destination_branch: "master" - pr_reviewer: "lgarofalo,cloudflare/ssl-tls-team" + pr_reviewer: "cloudflare/ssltls" pr_assignee: "lgarofalo" github_token: ${{ secrets.GITHUB_TOKEN }} - name: Google Chat Notification diff --git a/Dockerfile b/Dockerfile index c94dae1c..0ccc3cef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ -# Dockerfile for cfssl_trust release environment -# Provides Go 1.24, certdump, cfssl tools, and cfssl-trust +# Dockerfile to run the cfssl_trust release script locally. +# WARP must be turned off to run the script. +# Provides Go 1.21, certdump, cfssl tools, and cfssl-trust -FROM golang:1.24-bookworm +FROM golang:1.21-bookworm # Install git and update CA certificates RUN apt-get update && apt-get install -y \ @@ -19,6 +20,9 @@ RUN go install git.wntrmute.dev/kyle/goutils/cmd/certdump@v1.7.7 # Install cfssl tools RUN go install github.com/cloudflare/cfssl/cmd/... +# Install cfssl tools +RUN go install github.com/cloudflare/cfssl_trust/... + # Set working directory WORKDIR /cfssl_trust