]> git.openstreetmap.org Git - rails.git/commitdiff
Use ubuntu-latest for all workflows
authorTom Hughes <tom@compton.nu>
Sun, 16 Feb 2025 14:58:03 +0000 (14:58 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 16 Feb 2025 15:26:11 +0000 (15:26 +0000)
There's generally no point running on multiple versions as
the important things like ruby are note the OS versions in any
case and production runs on Debian now not Ubuntu.

.github/workflows/danger.yml
.github/workflows/docker.yml
.github/workflows/lint.yml
.github/workflows/tests.yml

index 6da5e716496d05c62300b13654a44f22bbd74905..66c2aca5113f870efe89bfbb72290a4d3e032dac 100644 (file)
@@ -10,7 +10,7 @@ permissions:
 
 jobs:
   danger:
 
 jobs:
   danger:
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
       - name: Check out code
         uses: actions/checkout@v4
     steps:
       - name: Check out code
         uses: actions/checkout@v4
index 771d307cfe8d412631548f0ebec2a629fe46b897..8d0e9f615fd111c02981fb95720d4c4443e09b46 100644 (file)
@@ -8,7 +8,7 @@ concurrency:
 jobs:
   test:
     name: Docker
 jobs:
   test:
     name: Docker
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
     - name: Checkout source
       uses: actions/checkout@v4
     steps:
     - name: Checkout source
       uses: actions/checkout@v4
index 75a1cc960f6e8c3fd44c343274f5cb0adcd2f985..8383068b3f08d9e8893a1692334f51f55f254cdd 100644 (file)
@@ -6,12 +6,11 @@ concurrency:
   group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
   cancel-in-progress: true
 env:
   group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
   cancel-in-progress: true
 env:
-  os: ubuntu-22.04
   ruby: '3.1'
 jobs:
   rubocop:
     name: RuboCop
   ruby: '3.1'
 jobs:
   rubocop:
     name: RuboCop
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
     - name: Check out code
       uses: actions/checkout@v4
     steps:
     - name: Check out code
       uses: actions/checkout@v4
index e478cd6d8353c4281ea2e4236903997550fa6ee4..d1cf73eaefc7d239a7fe5af072007ee702f3d236 100644 (file)
@@ -7,12 +7,11 @@ concurrency:
   cancel-in-progress: true
 jobs:
   test:
   cancel-in-progress: true
 jobs:
   test:
-    name: Ubuntu ${{ matrix.ubuntu }}, Ruby ${{ matrix.ruby }}
+    name: Ruby ${{ matrix.ruby }}
     strategy:
       matrix:
     strategy:
       matrix:
-        ubuntu: [22.04, 24.04]
         ruby: ['3.1', '3.2', '3.3', '3.4']
         ruby: ['3.1', '3.2', '3.3', '3.4']
-    runs-on: ubuntu-${{ matrix.ubuntu }}
+    runs-on: ubuntu-latest
     env:
       RAILS_ENV: test
       OPENSTREETMAP_MEMCACHE_SERVERS: 127.0.0.1
     env:
       RAILS_ENV: test
       OPENSTREETMAP_MEMCACHE_SERVERS: 127.0.0.1
@@ -65,7 +64,7 @@ jobs:
       uses: coverallsapp/github-action@v2.3.6
       with:
         github-token: ${{ secrets.github_token }}
       uses: coverallsapp/github-action@v2.3.6
       with:
         github-token: ${{ secrets.github_token }}
-        flag-name: ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}
+        flag-name: ruby-${{ matrix.ruby }}
         format: lcov
         parallel: true
   finish:
         format: lcov
         parallel: true
   finish: