From 2a62608c32befdce3c24dfe7f3b2a5d097418907 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 11:53:16 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/python-ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0b217f..359213f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: - name: Build run: make build-cover - name: Upload Poseidon binary - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: poseidon path: poseidon @@ -91,7 +91,7 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} - name: Upload coverage report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ success() || failure() }} with: name: coverage @@ -242,7 +242,7 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} - name: Upload coverage report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ success() || failure() }} with: name: coverage diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 9c52d43..bcf6d34 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -30,7 +30,7 @@ jobs: run: pipenv run python main.py working-directory: deploy/grafana-dashboard - name: Upload Grafana Dashboard JSON - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: grafana-dashboard.json path: deploy/grafana-dashboard/main.json