Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-archlinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
if: >-
always() &&
(steps.build.outcome == 'success' || steps.build.outcome == 'failure')
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-Archlinux
path: |
Expand All @@ -175,7 +175,7 @@ jobs:
ls -la artifacts/

- name: Upload Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-Archlinux
path: artifacts/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-copr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: artifacts
pattern: build-*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-flatpak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
run: cat generated-sources.json

- name: Cache Flatpak build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ./build/.flatpak-builder
key: flatpak-${{ matrix.arch }}-${{ github.sha }}
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
tar -czf ./artifacts/flathub.tar.gz -C ./flathub .

- name: Upload Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-Linux-Flatpak-${{ matrix.arch }}
path: artifacts/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ jobs:
if: >-
always() &&
(steps.test_report.outcome == 'success')
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-FreeBSD-${{ matrix.bsd_release }}-${{ matrix.cmake_processor }}
path: |
Expand All @@ -265,7 +265,7 @@ jobs:
if-no-files-found: error

- name: Upload Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-FreeBSD-${{ matrix.bsd_release }}-${{ matrix.cmake_processor }}
path: artifacts/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:

- name: Upload Artifacts
if: matrix.release
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-Homebrew
path: homebrew/
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
always() &&
matrix.release != true &&
(steps.test.outcome == 'success' || steps.test.outcome == 'failure')
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-Homebrew-${{ matrix.os_name }}-${{ matrix.os_version }}
path: |
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:

- name: Upload Artifacts (Beta)
if: matrix.release
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: beta-Homebrew
path: homebrew/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
if: >-
always() &&
(steps.test_report.outcome == 'success')
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-Linux-${{ matrix.name }}
path: |
Expand All @@ -202,7 +202,7 @@ jobs:
if-no-files-found: error

- name: Upload Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-Linux-${{ matrix.name }}
path: artifacts/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ jobs:
if: >-
always() &&
(steps.test_report.outcome == 'success')
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-${{ matrix.name }}
path: |
Expand All @@ -233,7 +233,7 @@ jobs:
a "../artifacts/Sunshine-${{ matrix.name }}-debuginfo.7z" "*.dbg"

- name: Upload Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-${{ matrix.name }}
path: artifacts/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:

- name: Download coverage artifact
if: steps.should_run.outputs.SHOULD_RUN == 'true'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: coverage-${{ matrix.name }}
path: _coverage
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: artifacts
pattern: build-*
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download homebrew artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: beta-Homebrew
path: homebrew
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v6

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: prep
path: gh-pages-template/
Expand Down
Loading