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/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run clang-format
uses: jidicula/clang-format-action@v4.13.0
uses: jidicula/clang-format-action@v4.18.0
with:
clang-format-version: '17'
check-path: 'Source'
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: windows-2025-vs2026

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
submodules: 'true'

Expand All @@ -34,13 +34,13 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Archive executable
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: MStarPlayer
path: ${{github.workspace}}/build/MStarPlayer_artefacts/${{env.BUILD_TYPE}}/MStarPlayer.exe

- name: Archive PDB
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: PDB
path: ${{github.workspace}}/build/MStarPlayer_artefacts/${{env.BUILD_TYPE}}/MStarPlayer.pdb
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: 'true'

Expand All @@ -25,13 +25,13 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Archive executable
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: MStarPlayer
path: ${{github.workspace}}/build/MStarPlayer_artefacts/${{env.BUILD_TYPE}}/MStarPlayer.exe

- name: Archive PDB
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: PDB
path: ${{github.workspace}}/build/MStarPlayer_artefacts/${{env.BUILD_TYPE}}/MStarPlayer.pdb
Expand All @@ -42,9 +42,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
merge-multiple: true

Expand All @@ -56,7 +56,7 @@ jobs:
add_emojis: false

- name: Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
body: ${{ steps.changelog.outputs.markdown }}
files: |
Expand Down
Loading