Skip to content

Commit 45d99fd

Browse files
author
Alan Christie
committed
build: Fix build
1 parent e3eedad commit 45d99fd

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
- '3.10'
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
- name: Set up Python ${{ matrix.python-version }}
37-
uses: actions/setup-python@v2
37+
uses: actions/setup-python@v3
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Install requirements

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
- name: Inject slug/short variables
3434
uses: rlespinasse/github-slug-action@v3.x
3535
- name: Set up Python
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v3
3737
with:
3838
python-version: '3.10'
3939
- name: Install dependencies

src/squeck/widgets/env.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,7 @@ def render(self) -> Panel:
106106
table.add_column("Value", style=_KEY_VALUE_STYLE, no_wrap=True)
107107

108108
# The 'Authentication host'
109-
kc_host = Text(
110-
f"{self.environment.keycloak_hostname}", style=_KEY_VALUE_STYLE
111-
)
109+
kc_host = Text(f"{self.environment.keycloak_hostname}", style=_KEY_VALUE_STYLE)
112110

113111
# The API lines are also dynamically styled.
114112
as_hostname: Optional[str] = self.environment.as_hostname

0 commit comments

Comments
 (0)