diff --git a/.github/workflows/workflow_finetune.yml b/.github/workflows/workflow_finetune.yml index 8f30ec62c..6026c293f 100644 --- a/.github/workflows/workflow_finetune.yml +++ b/.github/workflows/workflow_finetune.yml @@ -61,7 +61,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Load environment variables run: cat /root/actions-runner-config/.env >> $GITHUB_ENV diff --git a/.github/workflows/workflow_finetune_gpu.yml b/.github/workflows/workflow_finetune_gpu.yml index ae258d392..f871e7cf0 100644 --- a/.github/workflows/workflow_finetune_gpu.yml +++ b/.github/workflows/workflow_finetune_gpu.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Running task on Intel GPU run: | diff --git a/.github/workflows/workflow_inference.yml b/.github/workflows/workflow_inference.yml index f9e50127c..b226092ea 100644 --- a/.github/workflows/workflow_inference.yml +++ b/.github/workflows/workflow_inference.yml @@ -65,7 +65,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Load environment variables run: cat /root/actions-runner-config/.env >> $GITHUB_ENV diff --git a/.github/workflows/workflow_lint.yml b/.github/workflows/workflow_lint.yml index c0cf3d48b..0b17d8934 100644 --- a/.github/workflows/workflow_lint.yml +++ b/.github/workflows/workflow_lint.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Run Lint run: ./format.sh -a diff --git a/.github/workflows/workflow_tests.yml b/.github/workflows/workflow_tests.yml index 63a5fd80b..03ff91f12 100644 --- a/.github/workflows/workflow_tests.yml +++ b/.github/workflows/workflow_tests.yml @@ -42,7 +42,7 @@ jobs: source $(python -c "import oneccl_bindings_for_pytorch as torch_ccl; print(torch_ccl.cwd)")/env/setvars.sh # Additional libraries required for pytest pip install -r ./tests/requirements.txt - + - name: Start Ray Cluster run: | ray start --head @@ -66,8 +66,8 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 - + uses: actions/checkout@v4 + - name: Determine Target id: "target" run: | @@ -107,7 +107,7 @@ jobs: run: | TARGET=${{steps.target.outputs.target}} docker exec "${TARGET}" bash -c "./tests/run-tests.sh" - + - name: Stop Container if: success() || failure() run: |