Compare commits
9 Commits
e280b0365c
...
15d1d42807
| Author | SHA1 | Date |
|---|---|---|
|
|
15d1d42807 | |
|
|
4295f0c1f9 | |
|
|
a50bbcd6f6 | |
|
|
dea0d0cf44 | |
|
|
e693f4070a | |
|
|
5539e59002 | |
|
|
65ef2ca3c9 | |
|
|
bccc988366 | |
|
|
a3349add54 |
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
go-version-file: go.mod
|
go-version-file: go.mod
|
||||||
id: go
|
id: go
|
||||||
|
|
@ -25,7 +25,7 @@ jobs:
|
||||||
- name: Get dependencies
|
- name: Get dependencies
|
||||||
env:
|
env:
|
||||||
# renovate: datasource=github-tags depName=golangci/golangci-lint
|
# renovate: datasource=github-tags depName=golangci/golangci-lint
|
||||||
GOLANGCI_LINT_VERSION: v2.4.0
|
GOLANGCI_LINT_VERSION: v2.5.0
|
||||||
run: |
|
run: |
|
||||||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
|
||||||
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ jobs:
|
||||||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||||
|
|
||||||
- name: Setup node
|
- name: Setup node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version-file: docs/package.json
|
node-version-file: docs/package.json
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ jobs:
|
||||||
id: pages
|
id: pages
|
||||||
uses: actions/configure-pages@v5
|
uses: actions/configure-pages@v5
|
||||||
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
# renovate: datasource=node-version depName=node
|
# renovate: datasource=node-version depName=node
|
||||||
node-version: 22
|
node-version: 22
|
||||||
|
|
@ -37,7 +37,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
# renovate: datasource=node-version depName=node
|
# renovate: datasource=node-version depName=node
|
||||||
node-version: 22
|
node-version: 22
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ jobs:
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/labeler@v5
|
- uses: actions/labeler@v6
|
||||||
with:
|
with:
|
||||||
sync-labels: true
|
sync-labels: true
|
||||||
dot: true
|
dot: true
|
||||||
|
|
|
||||||
|
|
@ -43,14 +43,14 @@ jobs:
|
||||||
id: tag
|
id: tag
|
||||||
|
|
||||||
- name: Set up go
|
- name: Set up go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
go-version-file: go.mod
|
go-version-file: go.mod
|
||||||
|
|
||||||
- name: Get dependencies
|
- name: Get dependencies
|
||||||
env:
|
env:
|
||||||
# renovate: datasource=github-tags depName=golangci/golangci-lint
|
# renovate: datasource=github-tags depName=golangci/golangci-lint
|
||||||
GOLANGCI_LINT_VERSION: v2.4.0
|
GOLANGCI_LINT_VERSION: v2.5.0
|
||||||
run: |
|
run: |
|
||||||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
|
||||||
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
||||||
|
|
@ -64,7 +64,7 @@ jobs:
|
||||||
|
|
||||||
# Upload artifacts in case of workflow failure
|
# Upload artifacts in case of workflow failure
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: oauth2-proxy-artifacts
|
name: oauth2-proxy-artifacts
|
||||||
path: |
|
path: |
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v9
|
- uses: actions/stale@v10
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
days-before-stale: 180
|
days-before-stale: 180
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -67,7 +67,7 @@ DOCKER_BUILDX_PUSH := $(DOCKER_BUILDX) --push
|
||||||
DOCKER_BUILDX_PUSH_X_PLATFORM := $(DOCKER_BUILDX_PUSH) --platform ${DOCKER_BUILD_PLATFORM}
|
DOCKER_BUILDX_PUSH_X_PLATFORM := $(DOCKER_BUILDX_PUSH) --platform ${DOCKER_BUILD_PLATFORM}
|
||||||
|
|
||||||
DOCKER_BUILD_PLATFORM_ALPINE ?= linux/amd64,linux/arm64,linux/ppc64le,linux/arm/v6,linux/arm/v7,linux/s390x
|
DOCKER_BUILD_PLATFORM_ALPINE ?= linux/amd64,linux/arm64,linux/ppc64le,linux/arm/v6,linux/arm/v7,linux/s390x
|
||||||
DOCKER_BUILD_RUNTIME_IMAGE_ALPINE ?= alpine:3.22.1
|
DOCKER_BUILD_RUNTIME_IMAGE_ALPINE ?= alpine:3.22.2
|
||||||
DOCKER_BUILDX_ARGS_ALPINE ?= --build-arg RUNTIME_IMAGE=${DOCKER_BUILD_RUNTIME_IMAGE_ALPINE} ${DOCKER_BUILDX_COMMON_ARGS}
|
DOCKER_BUILDX_ARGS_ALPINE ?= --build-arg RUNTIME_IMAGE=${DOCKER_BUILD_RUNTIME_IMAGE_ALPINE} ${DOCKER_BUILDX_COMMON_ARGS}
|
||||||
DOCKER_BUILDX_X_PLATFORM_ALPINE := docker buildx build ${DOCKER_BUILDX_ARGS_ALPINE} --platform ${DOCKER_BUILD_PLATFORM_ALPINE}
|
DOCKER_BUILDX_X_PLATFORM_ALPINE := docker buildx build ${DOCKER_BUILDX_ARGS_ALPINE} --platform ${DOCKER_BUILD_PLATFORM_ALPINE}
|
||||||
DOCKER_BUILDX_PUSH_X_PLATFORM_ALPINE := $(DOCKER_BUILDX_X_PLATFORM_ALPINE) --push
|
DOCKER_BUILDX_PUSH_X_PLATFORM_ALPINE := $(DOCKER_BUILDX_X_PLATFORM_ALPINE) --push
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ services:
|
||||||
httpbin: {}
|
httpbin: {}
|
||||||
|
|
||||||
gitea:
|
gitea:
|
||||||
image: gitea/gitea:1.24.5
|
image: gitea/gitea:1.24.7
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=1000
|
- USER_UID=1000
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ services:
|
||||||
httpbin: {}
|
httpbin: {}
|
||||||
dex:
|
dex:
|
||||||
container_name: dex
|
container_name: dex
|
||||||
image: ghcr.io/dexidp/dex:v2.43.1
|
image: ghcr.io/dexidp/dex:v2.44.0
|
||||||
command: dex serve /dex.yaml
|
command: dex serve /dex.yaml
|
||||||
hostname: dex
|
hostname: dex
|
||||||
volumes:
|
volumes:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
httpbin: {}
|
httpbin: {}
|
||||||
etcd:
|
etcd:
|
||||||
container_name: etcd
|
container_name: etcd
|
||||||
image: gcr.io/etcd-development/etcd:v3.6.4
|
image: gcr.io/etcd-development/etcd:v3.6.5
|
||||||
entrypoint: /usr/local/bin/etcd
|
entrypoint: /usr/local/bin/etcd
|
||||||
command:
|
command:
|
||||||
- --listen-client-urls=http://0.0.0.0:2379
|
- --listen-client-urls=http://0.0.0.0:2379
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ services:
|
||||||
# Reverse proxy
|
# Reverse proxy
|
||||||
gateway:
|
gateway:
|
||||||
container_name: traefik
|
container_name: traefik
|
||||||
image: traefik:v2.11.28
|
image: traefik:v2.11.29
|
||||||
volumes:
|
volumes:
|
||||||
- "./traefik:/etc/traefik"
|
- "./traefik:/etc/traefik"
|
||||||
ports:
|
ports:
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ services:
|
||||||
- httpbin
|
- httpbin
|
||||||
dex:
|
dex:
|
||||||
container_name: dex
|
container_name: dex
|
||||||
image: ghcr.io/dexidp/dex:v2.43.1
|
image: ghcr.io/dexidp/dex:v2.44.0
|
||||||
command: dex serve /dex.yaml
|
command: dex serve /dex.yaml
|
||||||
hostname: dex
|
hostname: dex
|
||||||
volumes:
|
volumes:
|
||||||
|
|
@ -52,7 +52,7 @@ services:
|
||||||
httpbin: {}
|
httpbin: {}
|
||||||
etcd:
|
etcd:
|
||||||
container_name: etcd
|
container_name: etcd
|
||||||
image: gcr.io/etcd-development/etcd:v3.6.4
|
image: gcr.io/etcd-development/etcd:v3.6.5
|
||||||
entrypoint: /usr/local/bin/etcd
|
entrypoint: /usr/local/bin/etcd
|
||||||
command:
|
command:
|
||||||
- --listen-client-urls=http://0.0.0.0:2379
|
- --listen-client-urls=http://0.0.0.0:2379
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: dex
|
- name: dex
|
||||||
repository: https://charts.dexidp.io
|
repository: https://charts.dexidp.io
|
||||||
version: 0.23.0
|
version: 0.24.0
|
||||||
- name: oauth2-proxy
|
- name: oauth2-proxy
|
||||||
repository: https://oauth2-proxy.github.io/manifests
|
repository: https://oauth2-proxy.github.io/manifests
|
||||||
version: 7.14.1
|
version: 7.18.0
|
||||||
- name: httpbin
|
- name: httpbin
|
||||||
repository: https://conservis.github.io/helm-charts
|
repository: https://conservis.github.io/helm-charts
|
||||||
version: 1.1.0
|
version: 1.1.0
|
||||||
- name: hello-world
|
- name: hello-world
|
||||||
repository: https://conservis.github.io/helm-charts
|
repository: https://conservis.github.io/helm-charts
|
||||||
version: 1.1.0
|
version: 1.1.0
|
||||||
digest: sha256:9b18e072db6863053c2967d023929ab4b9c03b6bd84f6529d90fe7a9ec5e315f
|
digest: sha256:fee913531bfb67e5555e995d8fb040c330e6eb4b5a8c777ceb9841135ea9bb84
|
||||||
generated: "2025-07-20T08:56:43.559585022Z"
|
generated: "2025-10-28T06:46:35.38300324Z"
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@ description: K8S example based on https://kind.sigs.k8s.io
|
||||||
name: kubernetes
|
name: kubernetes
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: dex
|
- name: dex
|
||||||
version: 0.23.0
|
version: 0.24.0
|
||||||
repository: https://charts.dexidp.io
|
repository: https://charts.dexidp.io
|
||||||
- name: oauth2-proxy
|
- name: oauth2-proxy
|
||||||
version: &chartVersion 7.14.1
|
version: &chartVersion 7.18.0
|
||||||
repository: https://oauth2-proxy.github.io/manifests
|
repository: https://oauth2-proxy.github.io/manifests
|
||||||
# https://github.com/postmanlabs/httpbin/issues/549 is still in progress, for now using a non-official chart
|
# https://github.com/postmanlabs/httpbin/issues/549 is still in progress, for now using a non-official chart
|
||||||
- name: httpbin
|
- name: httpbin
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue