Skip to content

Commit faaad4c

Browse files
committed
Changed CI to just run on ubuntu-latest
If we already have to bump this version as GitHub phases out older Ubuntu runners (which is reasonable), I don't really see the value of pinning a specific version. We might as well just respond to any broken dependencies caused by GitHub's implicit updates as they happen... It's not like CI is truly continuous.
1 parent c7e2d65 commit faaad4c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defaults:
1111

1212
jobs:
1313
release:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-latest
1515

1616
# need to manually check for a couple things
1717
# - tests passed?

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
# self-host test with littlefs-fuse
1414
test:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: install
@@ -56,7 +56,7 @@ jobs:
5656
5757
# test older versions
5858
test-lfs2_0:
59-
runs-on: ubuntu-22.04
59+
runs-on: ubuntu-latest
6060
steps:
6161
- uses: actions/checkout@v2
6262
- name: install

0 commit comments

Comments
 (0)