diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36ec979..c1bddf5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: - name: Upload coverage if: matrix.os == 'ubuntu-latest' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: files: coverage.out fail_ci_if_error: false @@ -137,7 +137,7 @@ jobs: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="$LDFLAGS" -o dist/${{ matrix.artifact }} ./cmd/my-own-vpn - name: Upload build artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: dist/${{ matrix.artifact }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e42f2bf..5499d9a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -63,7 +63,7 @@ jobs: go build -ldflags="$LDFLAGS" -o ${{ matrix.artifact }} ./cmd/my-own-vpn - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: ${{ matrix.artifact }} @@ -78,7 +78,7 @@ jobs: uses: actions/checkout@v6 - name: Download all artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: path: dist merge-multiple: true