From 60166e6ba19694c489124f134479a0c4576f2cf0 Mon Sep 17 00:00:00 2001 From: bicarus-dev <202771338+bicarus-dev@users.noreply.github.com> Date: Tue, 30 Jun 2026 02:11:05 -0700 Subject: [PATCH] update gh actions --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 057f79f..0b08cf7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,12 @@ jobs: run: working-directory: ./src/spice2x steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set ccache environment variables run: | echo "CCACHE_DIR=${{ github.workspace }}/src/spice2x/.ccache" >> $GITHUB_ENV - name: Install ccache - uses: hendrikmuhs/ccache-action@v1.2 + uses: hendrikmuhs/ccache-action@v1.2.23 - name: Calculate commit SHA id: vars run: | @@ -25,7 +25,7 @@ jobs: echo "COMMIT_SHORT_SHA=$calculatedSha" >> $GITHUB_ENV - name: Compile run: ./build_docker.sh - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v6 with: name: spice2x-ci-${{ env.COMMIT_SHORT_SHA }} path: src/spice2x/bin diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 18608d3..47ef1e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: run: working-directory: ./src/spice2x steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: main fetch-depth: 0