diff options
author | Jakob Unterwurzacher | 2025-02-02 19:43:44 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-02-02 19:43:44 +0100 |
commit | 3ad8759d55419df51e3435bd40ea9cc62e3d4c87 (patch) | |
tree | 19ef1bd7f8630f1c59219a8324521426af4605e4 | |
parent | 5169c47fa05cd6036a52878277b6f2d807a351fc (diff) |
github ci: unbreak upload-artifact
Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abda518..e9b2a12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: # Build & upload static binary - run: ./build-without-openssl.bash - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: gocryptfs static binary (Go ${{ matrix.go }}) path: gocryptfs |