Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescurtin committed Feb 13, 2024
1 parent bd3ac7a commit 015d07f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
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
6 changes: 3 additions & 3 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 @@ -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

0 comments on commit 015d07f

Please sign in to comment.