Skip to content

Commit baf3014

Browse files
authored
Merge pull request #303 from ByteInternet/upgrade_to_bookworm
Use hypernode-deploy 4, bookworm, php 8.3, python 3.11
2 parents 44c2d9f + 3eb185d commit baf3014

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/cleanup_acceptance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
cleanup:
99
runs-on: ubuntu-latest
10-
container: quay.io/hypernode/deploy:3-php8.1-node18
10+
container: quay.io/hypernode/deploy:4-php8.3-node20
1111
environment: acceptance
1212
steps:
1313
- uses: actions/checkout@v2

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
container: quay.io/hypernode/deploy:3-php8.1-node18
15+
container: quay.io/hypernode/deploy:4-php8.3-node20
1616
steps:
1717
- uses: actions/checkout@v3
1818
with:
@@ -47,7 +47,7 @@ jobs:
4747
name: acceptance
4848
url: ${{ steps.get_brancher_hostname.outputs.BRANCHER_URL }}
4949
if: github.ref != 'refs/heads/master'
50-
container: quay.io/hypernode/deploy:3-php8.1-node18
50+
container: quay.io/hypernode/deploy:4-php8.3-node20
5151
steps:
5252
- uses: actions/checkout@v3
5353
with:
@@ -102,7 +102,7 @@ jobs:
102102
name: production
103103
url: https://docs.hypernode.io
104104
if: github.ref == 'refs/heads/master'
105-
container: quay.io/hypernode/deploy:3-php8.1-node18
105+
container: quay.io/hypernode/deploy:4-php8.3-node20
106106
steps:
107107
- uses: actions/checkout@v3
108108
- name: download build artifact

.github/workflows/detect_renamed_docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
echo "$result" >> $GITHUB_OUTPUT
2121
echo "EOF" >> $GITHUB_OUTPUT
2222
shell: bash
23-
- name: Comment hostname on PR
23+
- name: Comment changed files on PR
2424
if: ${{ steps.changed_files.outputs.CHANGED_FILES }}
2525
uses: thollander/actions-comment-pull-request@v1
2626
with:

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.7', '3.8', '3.9', '3.10']
11+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1212

1313
steps:
1414
- uses: actions/checkout@v3

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310
2+
envlist = py37,py38,py39,py310,py311
33
skipsdist = True
44

55
[gh-actions]
@@ -8,6 +8,7 @@ python =
88
3.8: py38
99
3.9: py39
1010
3.10: py310
11+
3.11: py311
1112

1213
[testenv]
1314
setenv =

0 commit comments

Comments
 (0)