From 9825f756f8dc65946ae3f92030b29c0434c2529f Mon Sep 17 00:00:00 2001 From: TatianaOvsiannikova <43534935+TatianaOvsiannikova@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:53:48 +0200 Subject: [PATCH 1/3] try to fix actions --- .github/workflows/coveralls.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml index 7ae941d8..9628c155 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -42,7 +42,7 @@ jobs: docker cp ostap-build:/osya/ostap/build . - name: Archive production artifacts if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: test path: build/Testing From ab36395e550cc56450cbb2dfefb943fc0e9950eb Mon Sep 17 00:00:00 2001 From: VanyaBelyaev Date: Mon, 14 Oct 2024 19:59:21 +0200 Subject: [PATCH 2/3] Update ostap-check-dependencies --- scripts/ostap-check-dependencies | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ostap-check-dependencies b/scripts/ostap-check-dependencies index 02af56e7..e7d5b84e 100755 --- a/scripts/ostap-check-dependencies +++ b/scripts/ostap-check-dependencies @@ -43,7 +43,7 @@ except ImportError : # ======================================================== try : # ======================================================================= # ========================================================================= import ROOT - row = 'ROOT', ROOT.__version__ , ROOT.__file__ + row = 'ROOT', ROOT.gROOT.GetVersion() , ROOT.__file__ rows.append ( row ) # ========================================================================= except ImportError : # ======================================================== From 0101e0554ea394017fa85f40a952868409767107 Mon Sep 17 00:00:00 2001 From: TatianaOvsiannikova <43534935+TatianaOvsiannikova@users.noreply.github.com> Date: Mon, 14 Oct 2024 21:45:22 +0200 Subject: [PATCH 3/3] steps towards returning git action --- .github/workflows/coveralls.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml index 9628c155..e2172ef7 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -44,6 +44,6 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: test + name: my-artifacts-${{ strategy.job-index }} path: build/Testing