diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0e67f5..33ae9be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,10 +14,10 @@ on: jobs: test_windows: name: Windows - runs-on: windows-2019 + runs-on: windows-2022 env: - ANSYS_VERSION: 232 + ANSYS_VERSION: 261 steps: - uses: actions/checkout@v3.5.2 @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest env: - ANSYS_VERSION: 232 + ANSYS_VERSION: 261 steps: - uses: actions/checkout@v3.5.2 diff --git a/install-dpf-docker/action.yml b/install-dpf-docker/action.yml index bcac90f..cc5e004 100644 --- a/install-dpf-docker/action.yml +++ b/install-dpf-docker/action.yml @@ -2,7 +2,7 @@ name: "Install DPF Server" description: "Install and test DPF Server for different OS and versions" inputs: dpf-standalone-TOKEN: - description: "github secret to access https://github.com/ansys-dpf/dpf-standalone" + description: "github secret to access https://github.com/ansys-internal/dpf-standalone" required: true ANSYS_VERSION: description: "Ansys release version number in the format 232" @@ -33,7 +33,7 @@ runs: BranchName="linux_release-"${ANSYS_VERSION_WITH_POINT}"${{inputs.standalone_suffix}}" echo $BranchName - git clone --branch $BranchName --single-branch --depth=1 https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-dpf/dpf-standalone dpf-standalone + git clone --branch $BranchName --single-branch --depth=1 https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-internal/dpf-standalone dpf-standalone ls dpf-standalone/ cd dpf-standalone/ansys/dpf/ diff --git a/install-dpf-server/action.yml b/install-dpf-server/action.yml index c802b16..6ac1281 100644 --- a/install-dpf-server/action.yml +++ b/install-dpf-server/action.yml @@ -2,12 +2,12 @@ name: "Install DPF Server" description: "Install and test DPF Server for different OS and versions" inputs: dpf-standalone-TOKEN: - description: "github secret to access https://github.com/ansys-dpf/dpf-standalone" + description: "github secret to access https://github.com/ansys-internal/dpf-standalone" required: true ANSYS_VERSION: - description: "Ansys release version number in the format 232" + description: "Ansys release version number in the format 261" required: false - default: "232" + default: "261" standalone_suffix: description: "Suffix of the branch on standalone" required: false @@ -34,7 +34,7 @@ runs: } $BranchName = if ("${{runner.os}}" -eq "Linux") { "linux_release-$ANSYS_VERSION_WITH_POINT" } else { "win_release-$ANSYS_VERSION_WITH_POINT" } echo "cloning standalone branch name: " $BranchName - git clone --branch $BranchName --single-branch --depth=1 https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-dpf/dpf-standalone dpf-standalone/v${{inputs.ANSYS_VERSION}} + git clone --branch $BranchName --single-branch --depth=1 https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-internal/dpf-standalone dpf-standalone/v${{inputs.ANSYS_VERSION}} echo "pwd: " pwd echo "ls: "