Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#333)
Browse files Browse the repository at this point in the history
* Bump actions/upload-artifact from 3 to 4
* Revert "Bump jurplel/install-qt-action from 3 to 4"
* switch to macOS-latest runner
  • Loading branch information
dependabot[bot] authored Dec 19, 2023
1 parent d7efa7b commit 225a1c7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-2022, macos-11.0, ubuntu-22.04]
os: [windows-2022, macos-latest, ubuntu-22.04]
compiler: ['clang', 'gcc', 'msvc']
exclude:
- os: ubuntu-22.04
compiler: 'msvc'
- os: macos-11.0
- os: macos-latest
compiler: 'gcc'
- os: macos-11.0
- os: macos-latest
compiler: 'msvc'
- os: windows-2022
compiler: 'clang'
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
# Install Packages (Windows)
#
- if: runner.os == 'Windows'
uses: jurplel/install-qt-action@v4
uses: jurplel/install-qt-action@v3
with:
version: 5.15.2
dir: 'C:\'
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
$XSLInputElement.Load("https://raw.githubusercontent.com/rpavlik/jenkins-ctest-plugin/master/ctest-to-junit.xsl")
$XSLInputElement.Transform((Resolve-Path .\build\Testing\*\Test.xml), (Join-Path (Resolve-Path .) "ctest-to-junit-results.xml"))
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results ${{ matrix.os }} ${{ matrix.compiler }}
path: ctest-to-junit-results.xml
Expand Down Expand Up @@ -171,19 +171,19 @@ jobs:
run: cd build && cpack
- if: runner.os == 'macOS'
name: Upload Package for Mac
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-test Mac ${{ matrix.os }} ${{ matrix.compiler }}
path: ${{ github.workspace }}/artifact/*.dmg
- if: contains( matrix.os, 'ubuntu' )
name: Upload Package for Ubuntu
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-test Linux ${{ matrix.os }} ${{ matrix.compiler }}
path: ${{ github.workspace }}/artifact/*.deb
- if: runner.os == 'Windows'
name: Upload Package for Windows
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-test Windows ${{ matrix.os }} ${{ matrix.compiler }}
path: ${{ github.workspace }}/artifact/*.exe

0 comments on commit 225a1c7

Please sign in to comment.