We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18438f3 commit 6843d25Copy full SHA for 6843d25
.github/workflows/ci.yaml
@@ -17,7 +17,7 @@ jobs:
17
strategy:
18
matrix:
19
version: [ 20, 22, 24, 25 ]
20
- os: [ "ubuntu:24.04", "ubuntu:22.04", "debian:12", "debian:11" ]
+ os: [ "ubuntu:24.04", "ubuntu:22.04", "debian:13", "debian:11" ]
21
container:
22
image: ${{ matrix.os }}
23
defaults:
@@ -31,7 +31,8 @@ jobs:
31
run: ./scripts/deb/setup_${{ matrix.version }}.x
32
33
- name: Audit Repository
34
- run: apt update --audit || echo "apt update --audit failed (possibly unsupported version)"
+ if: matrix.os != "debian:13"
35
+ run: apt update --audit
36
37
- name: Install Nodejs
38
run: apt install nodejs -y
0 commit comments