Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-java@v4
- uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'

- uses: android-actions/setup-android@v3
- uses: android-actions/setup-android@v4

- run: yes | sdkmanager --licenses || true

Expand All @@ -41,7 +41,7 @@ jobs:
sdkmanager --install "ndk;25.2.9519653"
sdkmanager --install "cmake;3.22.1"

- uses: actions/cache@v4
- uses: actions/cache@v6
with:
path: |
~/.gradle/caches
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
Expand All @@ -27,7 +27,7 @@ jobs:
- run: touch ./output/.nojekyll

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
library_mode: MODULE

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Get latest release version number
id: get_version
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
boost: [0, 1]
library_mode: [LIBRARY, HEADER_ONLY, MODULE]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: vmactions/freebsd-vm@v1
with:
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
apt-get update -qq
apt-get install -qq --force-yes git ca-certificates

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Get latest release version number
id: get_version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Check out repository code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: 'recursive'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
archs: x86_64 arm64

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: recursive

Expand All @@ -40,7 +40,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion cmake/libremidi.tests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ endif()
FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2
GIT_TAG v3.4.0
GIT_TAG v3.15.1
${CMAKE_FETCHCONTENT_SYSTEM_KEYWORD}
)

Expand Down
Loading