From f506b7d38eb17a1ff309d6d3c2b370cdb294b691 Mon Sep 17 00:00:00 2001 From: Onkar Deshpande Date: Mon, 16 Sep 2024 17:10:46 -0700 Subject: [PATCH] Update github @actions/upload-artifact to v4 (#6311) After a PR is merged, the github actions is failing in `docs.yml` - https://github.com/getsentry/snuba/actions/workflows/docs.yml. The failure is because we are using deprecated upload artifact v2 instead of the latest and greatest [v4](https://github.com/actions/upload-artifact?tab=readme-ov-file#v4---whats-new). --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3c5f822556..beb953664e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,7 +30,7 @@ jobs: force_orphan: true - name: Archive Docs - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: docs path: docs/build