Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,22 +107,22 @@ jobs:
purpose-of-job: Test
- os: ubuntu-latest
os-friendly-name: Ubuntu 22
check-version-command: grep "VERSION\|ID" /etc/os-release && uname -a
check-version-command: grep "VERSION\|ID" /etc/os-release
install-upgrades-command: sudo apt-get update && sudo NEEDRESTART_MODE=a apt-get dist-upgrade -y
- os: ubuntu-20.04
os-friendly-name: Ubuntu 20
check-version-command: grep "VERSION\|ID" /etc/os-release && uname -a
check-version-command: grep "VERSION\|ID" /etc/os-release
install-upgrades-command: sudo apt-get update && sudo NEEDRESTART_MODE=a apt-get dist-upgrade -y
- os: macos-14
os-friendly-name: macOS 14 arm64
check-version-command: sw_vers | grep Version | awk '{print $2}' && uname -a
check-version-command: sw_vers | grep Version | awk '{print $2}'
- os: macos-13
os-friendly-name: macOS 13 x86_64
check-version-command: sw_vers | grep Version | awk '{print $2}' && uname -a
check-version-command: sw_vers | grep Version | awk '{print $2}'
needs: [shell-lint, yaml-lint, dockerfile-lint, markdown-spellcheck, pause-if-master-commit]
steps:
- name: Check the current OS version
run: ${{ matrix.check-version-command }}
run: ${{ matrix.check-version-command }} && uname -a
- uses: actions/checkout@v4
- name: Install system upgrades
run: ${{ matrix.install-upgrades-command }}
Expand Down