Skip to content

Commit 6955ae2

Browse files
committed
chore: use macos-14 for CI
1 parent 95168a2 commit 6955ae2

19 files changed

+25
-25
lines changed

.github/workflows/ci_examples_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
java-version: [8, 11, 16, 17]
31-
os: [macos-13]
31+
os: [macos-14]
3232
runs-on: ${{ matrix.os }}
3333
permissions:
3434
id-token: write

.github/workflows/ci_examples_net.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
library: [DynamoDbEncryption]
2929
dotnet-version: ["6.0.x"]
30-
os: [macos-13]
30+
os: [macos-14]
3131
runs-on: ${{ matrix.os }}
3232
permissions:
3333
id-token: write

.github/workflows/ci_test_go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
library: [DynamoDbEncryption, TestVectors]
32-
os: [ubuntu-22.04, macos-13]
32+
os: [ubuntu-22.04, macos-14]
3333
go-version: ["1.23", "1.24", "1.25"]
3434
runs-on: ${{ matrix.os }}
3535
permissions:
3636
id-token: write
3737
contents: read
3838
steps:
3939
- name: Setup Docker
40-
if: matrix.os == 'macos-13' && matrix.library == 'TestVectors'
40+
if: matrix.os == 'macos-14' && matrix.library == 'TestVectors'
4141
uses: douglascamata/setup-docker-macos-action@v1-alpha
4242

4343
- name: Setup DynamoDB Local

.github/workflows/ci_test_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
matrix:
3131
library: [DynamoDbEncryption]
3232
java-version: [8, 11, 16, 17]
33-
os: [macos-13]
33+
os: [macos-14]
3434
runs-on: ${{ matrix.os }}
3535
permissions:
3636
id-token: write

.github/workflows/ci_test_net.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
library: [DynamoDbEncryption]
2727
dotnet-version: ["6.0.x"]
28-
os: [macos-13, ubuntu-22.04, windows-latest]
28+
os: [macos-14, ubuntu-22.04, windows-latest]
2929
runs-on: ${{ matrix.os }}
3030
permissions:
3131
id-token: write

.github/workflows/ci_test_vector_java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
os: [
3333
# Run on ubuntu image that comes pre-configured with docker
3434
ubuntu-22.04,
35-
macos-13,
35+
macos-14,
3636
]
3737
runs-on: ${{ matrix.os }}
3838
permissions:
3939
id-token: write
4040
contents: read
4141
steps:
4242
- name: Setup Docker
43-
if: matrix.os == 'macos-13' && matrix.library == 'TestVectors'
43+
if: matrix.os == 'macos-14' && matrix.library == 'TestVectors'
4444
uses: douglascamata/[email protected]
4545

4646
- name: Setup DynamoDB Local

.github/workflows/ci_test_vector_net.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
os: [
2929
# Run on ubuntu image that comes pre-configured with docker
3030
ubuntu-22.04,
31-
macos-13,
31+
macos-14,
3232
]
3333
runs-on: ${{ matrix.os }}
3434
permissions:
3535
id-token: write
3636
contents: read
3737
steps:
3838
- name: Setup Docker
39-
if: matrix.os == 'macos-13' && matrix.library == 'TestVectors'
39+
if: matrix.os == 'macos-14' && matrix.library == 'TestVectors'
4040
uses: douglascamata/[email protected]
4141

4242
- name: Setup DynamoDB Local

.github/workflows/ci_todos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
findTodos:
12-
runs-on: macos-13
12+
runs-on: macos-14
1313
steps:
1414
- uses: actions/checkout@v3
1515

.github/workflows/dafny_interop_examples_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
max-parallel: 1
2929
matrix:
3030
java-version: [8, 11, 16, 17]
31-
os: [macos-13]
31+
os: [macos-14]
3232
runs-on: ${{ matrix.os }}
3333
permissions:
3434
id-token: write

.github/workflows/dafny_interop_examples_net.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
library: [DynamoDbEncryption]
2626
dotnet-version: ["6.0.x"]
27-
os: [macos-13]
27+
os: [macos-14]
2828
runs-on: ${{ matrix.os }}
2929
permissions:
3030
id-token: write

0 commit comments

Comments
 (0)