1 Commits

Author SHA1 Message Date
54f73e2873 fix: Dockerimage FROM buildargs
All checks were successful
Update Traefik Version / update-version (pull_request) Successful in 3s
2026-03-11 12:59:28 -03:00
4 changed files with 4 additions and 25 deletions

View File

@@ -4,7 +4,7 @@ name: Update Traefik Version
on:
schedule:
- cron: '30 6 * * *' # Every day at 06:30 UTC
- cron: '0 6 * * 1' # Every Monday at 06:00 UTC
workflow_dispatch:
pull_request:
branches:
@@ -27,10 +27,6 @@ jobs:
working-directory: ansible_role_proxy
run: |
LATEST=$(curl -sf https://api.github.com/repos/traefik/traefik/releases/latest | jq -r '.tag_name')
if ! [[ "$LATEST" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "::error::Refusing to bump to non-stable version '$LATEST'"
exit 1
fi
CURRENT=$(grep "^traefik_version:" defaults/main.yml | sed "s/traefik_version: '//;s/'//")
echo "latest=$LATEST" >> "$GITHUB_OUTPUT"
if [ "$LATEST" = "$CURRENT" ]; then

View File

@@ -1,17 +0,0 @@
name: Calling Docusaurus
on:
push:
branches:
- main
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v4
with:
token: ${{ secrets.PUBLIC_REPOSITORY_DISPATCH }}
repository: gianet-us/www_gianet_us
event-type: trigger-docs-update

View File

@@ -1,5 +1,5 @@
# Ansible Role: Proxy
ansible_role_proxy
==================
Complete Proxy Server Role based on Traefik. This role installs and configures Traefik as a reverse proxy on Debian and Ubuntu systems.

View File

@@ -3,7 +3,7 @@
## Install configuration
traefik_name: 'traefik'
traefik_version: 'v3.6.14'
traefik_version: 'v3.6.10'
traefik_opt: '/opt/{{ traefik_name }}'
traefik_etc: '/etc/{{ traefik_name }}'
traefik_url: 'https://github.com/{{ traefik_name }}/{{ traefik_name }}/releases/download/{{ traefik_version }}/{{ traefik_name }}_{{ traefik_version }}'