Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update traefik docker tag to v2.11.0 #113

Merged
merged 3 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ jobs:
name: Run yaml linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Configure Python 3.8
- uses: actions/checkout@v4.1.1
- name: Configure Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.12"
- name: Install yamllint
run: pip install yamllint==1.24.2
run: pip install yamllint==1.34.0
- name: Run yamllint
run: yamllint .
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@v4.1.1
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@cd81f4475ab741e097ec0fe73b692f3e49d66b8c
uses: ludeeus/action-shellcheck@2.0.0
with:
check_together: "yes"
env:
Expand All @@ -30,10 +30,10 @@ jobs:
name: Shell format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@v4.1.1
- uses: actions/setup-go@v5
with:
go-version: 1.18.x
go-version: 1.22.x
- name: Install shfmt
run: go install mvdan.cc/sh/v3/cmd/shfmt@latest
- name: Check formatting
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Make sure services start
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@v4.1.1
- name: Configure
run: make
- name: Ensure no placeholder secrets
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.labels.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.7"
version: "3.8"

services:
authelia:
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.7"
version: "3.8"

services:
authelia:
Expand Down Expand Up @@ -80,7 +80,7 @@ services:
- handle-errors
env_file:
- .env
image: traefik:2.10.7
image: traefik:v2.11.0
networks:
- docker-socket-proxy
- traefik
Expand All @@ -94,12 +94,12 @@ services:
- ./traefik.yml:/etc/traefik/traefik.yml:ro

whoami:
image: containous/whoami:v1.5.0
image: traefik/whoami:v1.10
networks:
- traefik

secure-whoami:
image: containous/whoami:v1.5.0
image: traefik/whoami:v1.10
networks:
- traefik

Expand Down
Loading