Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#81)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 30, 2023
1 parent fe8fae4 commit df174cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ jobs:
run: cmake --install . --config ${{matrix.build-type}}
- name: Upload MacOS Executable
if: matrix.os == 'macos' && matrix.build-type != 'Debug'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MacOS-${{matrix.arch}}-${{matrix.build-type}}
path: build/Sources/sdmicmute
- name: Upload Windows Executable
if: matrix.os == 'windows' && matrix.build-type != 'Debug'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Windows-${{matrix.build-type}}
path: build/Sources/${{matrix.build-type}}/sdmicmute.exe
- name: Upload Windows Debug Symbols
if: matrix.os == 'windows' && matrix.build-type != 'Release' && matrix.build-type != 'Debug'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: DebugSymbols-${{matrix.os}}-${{matrix.build-type}}
path: build/Sources/${{matrix.build-type}}/sdmicmute.pdb
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
-i ${{runner.temp}}/com.fredemmott.micmutetoggle.sdPlugin \
-o .
- name: Upload .streamDeckPlugin
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{matrix.build-type}}-StreamDeckPlugin
path: com.fredemmott.micmutetoggle.streamDeckPlugin
Expand Down

0 comments on commit df174cc

Please sign in to comment.