Skip to content

Commit 78de77d

Browse files
committed
use bookworm for hypernode-deploy
1 parent 22a915c commit 78de77d

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.distrobox/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:10
1+
FROM debian:12
22

33
ENV LANG C.UTF-8
44
ENV LC_ALL C.UTF-8

.github/workflows/test.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,27 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout hypernode-deploy
14+
with:
15+
ref: ${{ github.event.pull_request.head.ref }}
1416
uses: actions/checkout@v3
1517
- name: Run general testsuite
18+
with:
19+
ref: ${{ github.event.pull_request.head.ref }}
1620
if: ${{ matrix.testsuite == 'general' }}
1721
run: MAGENTO_REPO=./magento2 ./runtests.sh general
1822
shell: bash
1923
env:
2024
PHP_VERSION: ${{ matrix.php_version }}
2125
- name: Start SSH agent for brancher testsuite
26+
with:
27+
ref: ${{ github.event.pull_request.head.ref }}
2228
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.2' }}
2329
uses: webfactory/ssh-agent@v0.5.4
2430
with:
2531
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
2632
- name: Run brancher testsuite
33+
with:
34+
ref: ${{ github.event.pull_request.head.ref }}
2735
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.2' }}
2836
run: ./runtests.sh brancher
2937
shell: bash

ci/build/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:buster
1+
FROM debian:bookworm
22

33
ARG NODE_VERSION
44
ARG PHP_VERSION
@@ -22,9 +22,9 @@ RUN apt-get update \
2222
gettext-base \
2323
&& rm -rf /var/lib/apt/lists/* \
2424
&& curl -sSL http://debian.hypernode.com/repo.key | apt-key add - \
25-
&& echo "deb http://debian.hypernode.com buster main hypernode" | tee /etc/apt/sources.list.d/hypernode.list \
25+
&& echo "deb http://debian.hypernode.com bookworm main hypernode" | tee /etc/apt/sources.list.d/hypernode.list \
2626
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - \
27-
&& echo "deb http://deb.nodesource.com/node_${NODE_VERSION}.x buster main" | tee /etc/apt/sources.list.d/nodesource.list \
27+
&& echo "deb http://deb.nodesource.com/node_${NODE_VERSION}.x bookworm main" | tee /etc/apt/sources.list.d/nodesource.list \
2828
&& echo \
2929
"Package: * \
3030
Pin origin deb.nodesource.com \

0 commit comments

Comments
 (0)