From a54e71fa234ba39cb26790b5e166d17c4e25282a Mon Sep 17 00:00:00 2001 From: "EMEA-MEDIA\\scabra02" Date: Fri, 23 Aug 2024 15:21:56 +0100 Subject: [PATCH 1/3] update github actions versions --- .github/workflows/python-app.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 5e1b26d..b90ecfc 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -12,9 +12,9 @@ jobs: run-robot-tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.10 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 env: ROBOT_TESTS_DIR: ${{ github.workspace }}/Tests ROBOT_REPORTS_DIR: ${{ github.workspace }}/reports @@ -25,7 +25,7 @@ jobs: - name: Run Robot File run: robot -d ./reports -e offline ./Tests/keyword_tests.robot - name: Upload test results - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 if: always() with: name: robot_reports @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download reports - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: robot_reports - name: Send report to commit From 2393d846657ea11546345ee1c32c685fb6c0feb9 Mon Sep 17 00:00:00 2001 From: "EMEA-MEDIA\\scabra02" Date: Fri, 23 Aug 2024 15:23:37 +0100 Subject: [PATCH 2/3] update github actions --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index b90ecfc..22c4d57 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -3,7 +3,7 @@ name: SOAP-Library on: push: branches: - - master + - 'test/**' pull_request: branches: - master From bfb6a38bb8d94ddeb23615d64df7e9d9548aba16 Mon Sep 17 00:00:00 2001 From: "EMEA-MEDIA\\scabra02" Date: Fri, 23 Aug 2024 15:25:49 +0100 Subject: [PATCH 3/3] fix upload report --- .github/workflows/python-app.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 22c4d57..f57b560 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -25,7 +25,7 @@ jobs: - name: Run Robot File run: robot -d ./reports -e offline ./Tests/keyword_tests.robot - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v1 if: always() with: name: robot_reports @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download reports - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v1 with: name: robot_reports - name: Send report to commit