Skip to content
This repository was archived by the owner on Aug 31, 2025. It is now read-only.

Commit 7641d7a

Browse files
committed
CI: Set ssh-action specific version to workaround issue in main branch.
1 parent 774c96d commit 7641d7a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
- name: Wait 2m30s for the docker image to start up QEMU and Raspberry Pi OS
118118
run: sleep 150
119119
- name: Clone project & setup it as the bash entry directory
120-
uses: appleboy/ssh-action@master
120+
uses: appleboy/ssh-action@v1.0.3
121121
with:
122122
host: rpios
123123
username: pi
@@ -134,15 +134,15 @@ jobs:
134134
# As Pi OS stretch is no longer supported the repository URL was moved and is no longer updated
135135
- name: Update Stretch sources.list
136136
if: ${{ matrix.docker-tag == 'stretch-2018-03-13' }}
137-
uses: appleboy/ssh-action@master
137+
uses: appleboy/ssh-action@v1.0.3
138138
with:
139139
host: rpios
140140
username: pi
141141
password: raspberry
142142
port: ${{ job.services.rpios.ports[5022] }}
143143
script: echo "deb http://legacy.raspbian.org/raspbian/ stretch main contrib non-free rpi" | sudo tee /etc/apt/sources.list
144144
- name: Install Mu extra apt dependencies
145-
uses: appleboy/ssh-action@master
145+
uses: appleboy/ssh-action@v1.0.3
146146
with:
147147
host: rpios
148148
username: pi
@@ -152,22 +152,22 @@ jobs:
152152
sudo apt-get update
153153
sudo apt-get install -y python3-virtualenv
154154
- name: Create venv and install Python dependencies
155-
uses: appleboy/ssh-action@master
155+
uses: appleboy/ssh-action@v1.0.3
156156
with:
157157
host: rpios
158158
username: pi
159159
password: raspberry
160160
port: ${{ job.services.rpios.ports[5022] }}
161-
command_timeout: 20m
161+
command_timeout: 25m
162162
script: |
163163
python3 -m virtualenv ~/mu/.venv -v --python=python3 --system-site-packages
164164
echo "source ~/mu/.venv/bin/activate" > ~/.bashrc_new && cat ~/.bashrc >> ~/.bashrc_new
165165
rm ~/.bashrc && mv ~/.bashrc_new ~/.bashrc
166166
source .venv/bin/activate
167167
python -m pip list
168-
python -m pip install ."[dev]"
168+
python -m pip install ".[dev]"
169169
- name: Environment info
170-
uses: appleboy/ssh-action@master
170+
uses: appleboy/ssh-action@v1.0.3
171171
with:
172172
host: rpios
173173
username: pi
@@ -180,7 +180,7 @@ jobs:
180180
python3 -m pip --version
181181
python3 -m pip list
182182
- name: Run tests
183-
uses: appleboy/ssh-action@master
183+
uses: appleboy/ssh-action@v1.0.3
184184
with:
185185
host: rpios
186186
username: pi

0 commit comments

Comments
 (0)