Skip to content

Commit

Permalink
remove lando setup and slim support for lando >=3.24 part 3
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Dec 7, 2024
1 parent ad67964 commit 904c42c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-posix-script-os-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Run setup-lando.sh on ${{ matrix.os }}
if: runner.os == 'Linux'
shell: bash
run: ./setup-lando.sh
run: ./setup-lando.sh --version 3-edge && lando setup -y --debug
- name: Run setup-lando.sh on ${{ matrix.os }}
if: runner.os == 'macOS'
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions utils/is-slim-setupy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const {s3Releases} = require('./get-convenience-aliases');

module.exports = version => {
// slim can be any v3 s3 alias
if (s3Releases.includes(version)) return version.split('-')[0] === '3';
if (s3Releases.includes(version)) return false;
// or anything in the range
return satisfies(version, '>3.20 <3.24.0', {includePrerelease: true, loose: true});
return satisfies(version, '>3.20 <=3.23.9999', {includePrerelease: true, loose: true});
};

0 comments on commit 904c42c

Please sign in to comment.