Skip to content

ci(deps): update dependency ubuntu to v24 #886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 26, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
files-changed:
name: "Detect what files changed"
if: "github.repository == 'anolilab/javascript-style-guide'"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 3
# Map a step output to a job output
outputs:
Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:
name: "Check Lint Run"
# This is necessary since a failed/skipped dependent job would cause this job to be skipped
if: "always()"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
steps:
# If any jobs we depend on fail, we will fail since this is a required check
# NOTE: A timeout is considered a failure
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
jobs:
files-changed:
name: "Detect what files changed"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
timeout-minutes: 3
# Map a step output to a job output
outputs:
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
name: "Check Test Run"
# This is necessary since a failed/skipped dependent job would cause this job to be skipped
if: "always() && (needs.test.result == 'success' || needs.test.result == 'skipped')"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
steps:
# If any jobs we depend on fail, we will fail since this is a required check
# NOTE: A timeout is considered a failure
Expand Down
Loading