chore: upgrade ci elements, bump golang version (#153)
This commit is contained in:
parent
44cd2371d9
commit
1b9449bb93
@ -1,4 +1,4 @@
|
||||
FROM golang:1.22 as builder
|
||||
FROM golang:1.23 as builder
|
||||
WORKDIR /go/src/app
|
||||
COPY . .
|
||||
RUN make manager
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM golang:1.22 as builder
|
||||
FROM golang:1.23 as builder
|
||||
WORKDIR /go/src/app
|
||||
|
||||
ENV PATH=$PATH:/go/src/app/.bin
|
||||
|
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
@ -20,7 +20,7 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: "1.22"
|
||||
go-version: "1.23"
|
||||
- name: Setup dependencies
|
||||
uses: ./.github/actions/deps-setup
|
||||
|
||||
@ -107,7 +107,7 @@ jobs:
|
||||
uses: ./.github/actions/deps-setup
|
||||
- uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: "1.22"
|
||||
go-version: "1.23"
|
||||
cache: false
|
||||
- name: Test
|
||||
run: make test-integration
|
||||
|
2
.github/workflows/closed_references.yml
vendored
2
.github/workflows/closed_references.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
name: Find closed references
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v2-beta
|
||||
with:
|
||||
node-version: "14"
|
||||
|
2
.github/workflows/conventional_commits.yml
vendored
2
.github/workflows/conventional_commits.yml
vendored
@ -24,7 +24,7 @@ jobs:
|
||||
name: Validate PR title
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- id: config
|
||||
uses: ory/ci/conventional_commit_config@master
|
||||
with:
|
||||
|
2
.github/workflows/cve-scan.yaml
vendored
2
.github/workflows/cve-scan.yaml
vendored
@ -18,7 +18,7 @@ jobs:
|
||||
- uses: actions/setup-go@v4
|
||||
name: Setup Golang
|
||||
with:
|
||||
go-version: "1.22"
|
||||
go-version: "1.23"
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
- name: Set up Docker Buildx
|
||||
|
2
.github/workflows/format.yml
vendored
2
.github/workflows/format.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: "1.22"
|
||||
go-version: "1.23"
|
||||
- run: make format
|
||||
- name: Indicate formatting issues
|
||||
run: git diff HEAD --exit-code --color
|
||||
|
2
.github/workflows/labels.yml
vendored
2
.github/workflows/labels.yml
vendored
@ -16,7 +16,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
- name: Synchronize Issue Labels
|
||||
uses: ory/label-sync-action@v0
|
||||
with:
|
||||
|
2
.github/workflows/licenses.yml
vendored
2
.github/workflows/licenses.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: "1.22"
|
||||
go-version: "1.23"
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "18"
|
||||
|
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
@ -12,7 +12,7 @@ jobs:
|
||||
if: github.repository_owner == 'ory'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v4
|
||||
- uses: actions/stale@v9
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
stale-issue-message: |
|
||||
|
@ -1,7 +1,7 @@
|
||||
# This is an example goreleaser.yaml file with some sane defaults.
|
||||
# Make sure to check the documentation at http://goreleaser.com
|
||||
project_name: hydra-maester
|
||||
|
||||
version: 2
|
||||
before:
|
||||
hooks:
|
||||
- "go mod download"
|
||||
@ -59,7 +59,7 @@ builds:
|
||||
- darwin
|
||||
|
||||
snapshot:
|
||||
name_template: "{{ .Tag }}-next"
|
||||
version_template: "{{ .Tag }}-next"
|
||||
|
||||
changelog:
|
||||
sort: asc
|
||||
@ -69,7 +69,6 @@ dockers:
|
||||
- image_templates:
|
||||
- "oryd/hydra-maester:{{ .Tag }}-amd64"
|
||||
- "oryd/hydra-maester:{{ .ShortCommit }}-amd64"
|
||||
- "oryd/hydra-maester:latest"
|
||||
goarch: amd64
|
||||
build_flag_templates:
|
||||
- "--platform=linux/amd64"
|
||||
@ -86,6 +85,18 @@ dockers:
|
||||
ids:
|
||||
- "linux-arm64"
|
||||
|
||||
docker_manifests:
|
||||
- name_template: "oryd/hydra-maester:{{ .Tag }}"
|
||||
id: "tag"
|
||||
image_templates:
|
||||
- "oryd/hydra-maester:{{ .Tag }}-amd64"
|
||||
- "oryd/hydra-maester:{{ .Tag }}-arm64"
|
||||
- name_template: "oryd/hydra-maester:latests"
|
||||
id: "latests"
|
||||
image_templates:
|
||||
- "oryd/hydra-maester:{{ .Tag }}-amd64"
|
||||
- "oryd/hydra-maester:{{ .Tag }}-arm64"
|
||||
|
||||
release:
|
||||
prerelease: auto
|
||||
name_template: "{{ .Tag }}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user