Skip to content

Commit 9549a87

Browse files
authored
github actions: upgrade to ubuntu 22.04 (#366)
* github actions: upgrade to ubuntu 22.04 ubuntu 18.04 got deprecated https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/ * scalafmt
1 parent 4f90248 commit 9549a87

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: PR
22
on: pull_request
33
jobs:
44
pr:
5-
runs-on: ubuntu-18.04
5+
runs-on: ubuntu-22.04
66
steps:
77
- uses: actions/checkout@v2
88
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
release:
88
concurrency: release
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: actions/checkout@v2
1212
with:

traversal-tests/src/test/scala/overflowdb/algorithm/DependencySequencerTests.scala

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class DependencySequencerTests extends AnyWordSpec {
4848
}
4949

5050
"larger graph 1" in {
51-
51+
// format: off
5252
/** \+-------------------+
5353
* \| v
5454
* \+---+ +---+ +---+ +---+
@@ -59,6 +59,7 @@ class DependencySequencerTests extends AnyWordSpec {
5959
* \| D | ----------------+
6060
* \+---+
6161
*/
62+
// format: on
6263
val A = new Node("A")
6364
val B = new Node("B", Set(A))
6465
val C = new Node("C", Set(B))
@@ -68,7 +69,7 @@ class DependencySequencerTests extends AnyWordSpec {
6869
}
6970

7071
"larger graph 2" in {
71-
72+
// format: off
7273
/** \+-----------------------------+
7374
* \| v
7475
* \+---+ +---+ +---+ +---+ +---+
@@ -79,6 +80,7 @@ class DependencySequencerTests extends AnyWordSpec {
7980
* \| C | --------------------------+
8081
* \+---+
8182
*/
83+
// format: on
8284
val A = new Node("A")
8385
val B = new Node("B", Set(A))
8486
val C = new Node("C", Set(B))

0 commit comments

Comments
 (0)