Skip to content

Commit 323851e

Browse files
authored
Fix CI (#1077)
1 parent d01b2f1 commit 323851e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
node: [20, 22, 23]
15+
node: [20, 22, 23, 24]
1616
steps:
1717
- uses: actions/checkout@v4
1818

@@ -26,11 +26,11 @@ jobs:
2626
run: |
2727
echo deb http://packages.prosody.im/debian $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/prosody.list
2828
sudo wget https://prosody.im/files/prosody-debian-packages.key -O/etc/apt/trusted.gpg.d/prosody.gpg
29-
sudo apt-get update
30-
sudo apt-get -y install lua5.3 liblua5.3-dev prosody-trunk lua-bitop lua-sec luarocks
29+
# FIXME https://issues.prosody.im/1936
30+
sudo apt-get update --allow-insecure-repositories
31+
sudo apt-get -y --allow-unauthenticated install lua5.3 liblua5.3-dev prosody lua-bitop lua-sec luarocks
3132
sudo service prosody stop
3233
33-
# - run: npm install -g npm
3434
- run: make
3535
- run: make ci
3636

0 commit comments

Comments
 (0)