From 4018fe50367c752a6135653370c231ba5c139fa8 Mon Sep 17 00:00:00 2001 From: itisallgood <25401000+itisallgood@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:14:19 +0200 Subject: [PATCH] Migrated github actions to v4 (#5) --- .github/workflows/test-installation.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-installation.yaml b/.github/workflows/test-installation.yaml index aeabec6..7ec9694 100644 --- a/.github/workflows/test-installation.yaml +++ b/.github/workflows/test-installation.yaml @@ -17,7 +17,7 @@ jobs: poetry build pip3 install ./dist/robusta_cli-0.0.0-py3-none-any.whl - name: Upload robusta package artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: robusta-pkg path: dist/robusta_cli-0.0.0-py3-none-any.whl @@ -39,7 +39,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Download robusta-pkg - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: robusta-pkg - name: Install and test robusta cli