Skip to content

Commit

Permalink
macos-12 to macos-13
Browse files Browse the repository at this point in the history
  • Loading branch information
shoo committed Dec 4, 2024
1 parent b6580b2 commit 8343efc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ jobs:
# 21. macOS x86_64 dmd o o x x o
test-macos-x86_64-dmd-latest:
name: test-macos-x86_64-dmd-latest
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Install D compiler
Expand All @@ -311,7 +311,7 @@ jobs:
- name: Upload coverage result
uses: actions/upload-artifact@v4
with:
name: coverage-macos12
name: coverage-macos13
path: .cov
include-hidden-files: true

Expand Down Expand Up @@ -366,10 +366,10 @@ jobs:
- name: Download coverage result
uses: actions/download-artifact@v4
with:
name: coverage-macos12
path: coverage-macos12
name: coverage-macos13
path: coverage-macos13
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} -s coverage-macos12
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} -s coverage-macos13

# Deploy Pages
deproy-pages:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ jobs:
# 21. macOS x86_64 dmd o o x x o
test-macos-x86_64-dmd-latest:
name: test-macos-x86_64-dmd-latest
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Install D compiler
Expand All @@ -355,7 +355,7 @@ jobs:
- name: Upload coverage result
uses: actions/upload-artifact@v4
with:
name: coverage-osx
name: coverage-macos13
path: .cov
include-hidden-files: true

Expand All @@ -364,7 +364,7 @@ jobs:
# 22. macOS x86_64 ldc o x O o x
test-macos-x86_64-ldc-latest:
name: test-macos-x86_64-ldc-latest
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Install D compiler
Expand Down Expand Up @@ -418,7 +418,7 @@ jobs:
- name: Download coverage result
uses: actions/download-artifact@v4
with:
name: coverage-osx
path: coverage-osx
name: coverage-macos13
path: coverage-macos13
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} -s coverage-osx
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} -s coverage-macos13
6 changes: 3 additions & 3 deletions .github/workflows/status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ jobs:
# 21. macOS x86_64 dmd o o x x o
test-macos-x86_64-dmd-latest:
name: test-macos-x86_64-dmd-latest
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -333,7 +333,7 @@ jobs:
- name: Upload coverage result
uses: actions/upload-artifact@v4
with:
name: coverage-macos12
name: coverage-macos13
path: .cov
include-hidden-files: true

Expand All @@ -342,7 +342,7 @@ jobs:
# 22. macOS x86_64 ldc o x o o x
test-macos-x86_64-ldc-latest:
name: test-macos-x86_64-ldc-latest
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 8343efc

Please sign in to comment.