Skip to content

Commit

Permalink
use ubuntu-latest, and install ssl1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KenLSM committed Jan 7, 2025
1 parent 059ec84 commit 767919b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ jobs:
backend_lint:
needs: [changes, install]
if: ${{ needs.changes.outputs.backend == 'true' }}
runs-on: ubuntu-22.04 # TODO ubuntu-latest (24.x) no longer comes with libssl1.1 which is required by mongodb-memory-server to run ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -195,6 +195,10 @@ jobs:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Download libsso1.1 # ubuntu-latest (24.x) no longer comes with libssl1.1 which is required by mongodb-memory-server to run ci
run: wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
- name: Install libsso1.1
run: sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb
# Load cached node_modules
- name: Cache Node modules
uses: actions/cache@v2
Expand Down

0 comments on commit 767919b

Please sign in to comment.