diff --git a/.github/workflows/robocorp-deploy.yml b/.github/workflows/robocorp-deploy.yml index 658e9e7..810ca37 100644 --- a/.github/workflows/robocorp-deploy.yml +++ b/.github/workflows/robocorp-deploy.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest environment: ${{ inputs.environment }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore cache uses: actions/cache/restore@v3 diff --git a/.github/workflows/robocorp-install-dependencies.yml b/.github/workflows/robocorp-install-dependencies.yml index 6291a60..70e5878 100644 --- a/.github/workflows/robocorp-install-dependencies.yml +++ b/.github/workflows/robocorp-install-dependencies.yml @@ -6,8 +6,10 @@ on: jobs: install_dependencies: runs-on: ubuntu-latest + env: + UV_SYSTEM_PYTHON: "1" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache Dependencies id: cache-dependencies diff --git a/.github/workflows/robocorp-test-project.yml b/.github/workflows/robocorp-test-project.yml index 27509e3..66550b9 100644 --- a/.github/workflows/robocorp-test-project.yml +++ b/.github/workflows/robocorp-test-project.yml @@ -15,7 +15,7 @@ jobs: needs: call-robocorp-install-dependencies runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore cache uses: actions/cache/restore@v3 diff --git a/conda.yaml b/conda.yaml index 309bc52..ad56748 100644 --- a/conda.yaml +++ b/conda.yaml @@ -6,16 +6,14 @@ channels: - conda-forge dependencies: - - python=3.9.16 # https://pyreadiness.org/3.9 - + - python=3.12.13 # https://pyreadiness.org/3.12 + - uv=0.11.2 # https://github.com/astral-sh/uv # DEV dependencies - - pytest=7.4.2 - - python-dotenv=1.0.0 - - - pip=22.1.2 # https://pip.pypa.io/en/stable/news + - pytest=9.0.2 # https://pypi.org/project/pytest + - python-dotenv=1.2.2 # https://pypi.org/project/python-dotenv - pip: - - robocorp==1.0.0 # https://pypi.org/project/robocorp - - robocorp-browser==2.1.0 # https://pypi.org/project/robocorp-browser - - robocorp-log-pytest==0.0.1 # https://pypi.org/project/robocorp-log-pytest - - robocorp-excel==0.4.0 # https://pypi.org/project/robocorp-excel - - prodict==0.8.18 # https://pypi.org/project/prodict + - robocorp==3.1.1 # https://pypi.org/project/robocorp + - robocorp-browser==2.4.0 # https://pypi.org/project/robocorp-browser + - robocorp-log-pytest==0.0.5 # https://pypi.org/project/robocorp-log-pytest + - robocorp-excel==0.5.0 # https://pypi.org/project/robocorp-excel + - prodict==0.8.22 # https://pypi.org/project/prodict