diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 75fa858..840f6ad 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -135,7 +135,7 @@ jobs: GOARCH: ${{ matrix.goarch }} run: go build -trimpath -ldflags="-s -w" -o consent-plugin-${{ matrix.goos }}-${{ matrix.goarch }} . - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: consent-plugin-${{ matrix.goos }}-${{ matrix.goarch }} path: consent-plugin-${{ matrix.goos }}-${{ matrix.goarch }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7061119..18e19bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -161,7 +161,7 @@ jobs: GOARCH: ${{ matrix.goarch }} run: go build -trimpath -ldflags="-s -w" -o consent-plugin-${{ matrix.goos }}-${{ matrix.goarch }} . - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: consent-plugin-${{ matrix.goos }}-${{ matrix.goarch }} path: consent-plugin-${{ matrix.goos }}-${{ matrix.goarch }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 665b6d2..493a017 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,7 +27,7 @@ jobs: - name: Enforce the coverage floor run: make coverage-floor - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: coverage path: coverage.out