From dace10b7f6394c82bcd3de16fb5b180f64e5e6b1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Oct 2025 21:37:10 +0000 Subject: [PATCH 1/2] Initial plan From 4d6f9a507284ef4f0d105592c86fc711154ec3e7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Oct 2025 21:40:23 +0000 Subject: [PATCH 2/2] Update GitHub Actions to fix deprecated artifact upload action Co-authored-by: TylerCode <18288340+TylerCode@users.noreply.github.com> --- .github/workflows/appimage.yml | 6 +++--- .github/workflows/archive-repo.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index 7d83aba..0bdc7f3 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: '1.21.5' @@ -45,7 +45,7 @@ jobs: ./appimagetool-x86_64.AppImage --appimage-extract-and-run AppDir/ cycles-0.3.4-x86_64.AppImage - name: Upload AppImage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: Cycles-AppImage path: cycles-0.3.4-x86_64.AppImage diff --git a/.github/workflows/archive-repo.yml b/.github/workflows/archive-repo.yml index bfe2456..d252033 100644 --- a/.github/workflows/archive-repo.yml +++ b/.github/workflows/archive-repo.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -20,7 +20,7 @@ jobs: tar -czf repo-archive.tar.gz temp - name: Upload Archive as Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: repo-archive path: repo-archive.tar.gz