Skip to content

Commit af06a52

Browse files
committed
Updating runner images on workflows
1 parent 2d696c5 commit af06a52

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
workflow_call:
33
jobs:
44
containers:
5-
runs-on: ubuntu-22.04
5+
runs-on: ubuntu-latest
66
name: ${{ matrix.name }}
77
defaults:
88
run:

.github/workflows/build-db-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
workflow_call:
33
jobs:
44
db-container:
5-
runs-on: ubuntu-22.04
5+
runs-on: ubuntu-latest
66
name: db-container
77
defaults:
88
run:

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defaults:
66
jobs:
77
build:
88
if: ${{ github.actor != 'dependabot[bot]' }}
9-
runs-on: windows-2022
9+
runs-on: windows-latest
1010
steps:
1111
- name: Check for secrets
1212
env:

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
os: [windows-2022, ubuntu-22.04]
2121
test-category: [ Default, SqlServer, AzureServiceBus, RabbitMQ, AzureStorageQueues, MSMQ, SQS, PrimaryRavenAcceptance, PrimaryRavenPersistence, PostgreSQL ]
2222
include:
23-
- os: windows-2022
23+
- os: windows-latest
2424
os-name: Windows
25-
- os: ubuntu-22.04
25+
- os: ubuntu-latest
2626
os-name: Linux
2727
exclude:
28-
- os: ubuntu-22.04
28+
- os: ubuntu-latest
2929
test-category: MSMQ
3030
fail-fast: false
3131
steps:

.github/workflows/container-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_call:
44
jobs:
55
container-test:
6-
runs-on: ubuntu-22.04
6+
runs-on: ubuntu-latest
77
name: ${{ matrix.name }}
88
defaults:
99
run:

0 commit comments

Comments
 (0)