File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1- FROM debian:10
1+ FROM debian:12
22
33ENV LANG C.UTF-8
44ENV LC_ALL C.UTF-8
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1- FROM debian:buster
1+ FROM debian:bookworm
22
33ARG NODE_VERSION
44ARG 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 \
You can’t perform that action at this time.
0 commit comments