mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
* Ubuntu 20 Deprecation updates * Updating .md files * Update announcement.yml * Update bug-report.yml * Update tool-request.yml * Updating merge conflicts * Updating .md files * Updating merge conflicts * Resolved merge conflicts --------- Co-authored-by: Prabhat kumar <prabhatkumar59@Prabhats-Laptop.local>
14 lines
352 B
Bash
14 lines
352 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: os.sh
|
|
## Desc: Helper functions for OS releases
|
|
################################################################################
|
|
|
|
is_ubuntu22() {
|
|
lsb_release -rs | grep -q '22.04'
|
|
}
|
|
|
|
is_ubuntu24() {
|
|
lsb_release -rs | grep -q '24.04'
|
|
}
|