From 2dbdf5a7be8c59e169d21c4c2f52209239a4c2c0 Mon Sep 17 00:00:00 2001 From: Marshall Hanmer Date: Thu, 13 Nov 2025 14:52:35 -0500 Subject: [PATCH 1/3] Update org references for install-dpf-server --- install-dpf-server/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install-dpf-server/action.yml b/install-dpf-server/action.yml index dac9c9d..99079cd 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 221" + description: "Ansys release version number in the format 261" required: false - default: "221" + default: "261" outputs: SERVER: description: "Path to the server" @@ -21,7 +21,7 @@ runs: $TEMP2 = $TEMP.ToString() $ANSYS_VERSION_WITH_POINT=$TEMP2.Insert(2,".") $BranchName = if ("${{runner.os}}" -eq "Linux") { "linux_release-$ANSYS_VERSION_WITH_POINT" } else { "win_release-$ANSYS_VERSION_WITH_POINT" } - git clone --branch $BranchName --single-branch https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-dpf/dpf-standalone + git clone --branch $BranchName --single-branch https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-internal/dpf-standalone shell: pwsh - run: | From c0e0dfdaf3d7944e652b98382f2ef6d3a99b0f69 Mon Sep 17 00:00:00 2001 From: Marshall Hanmer Date: Fri, 21 Nov 2025 14:16:41 -0500 Subject: [PATCH 2/3] Update Windows Runner --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64fbf78..b331b49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: jobs: test_windows: name: Windows - runs-on: windows-2019 + runs-on: windows-2022 env: ANSYS_VERSION: 221 From f70772c53f5bd77d35a1c620ba9df04b453901da Mon Sep 17 00:00:00 2001 From: Marshall Hanmer Date: Fri, 21 Nov 2025 14:25:44 -0500 Subject: [PATCH 3/3] Version maintenance --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b331b49..59de7be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,10 +17,9 @@ jobs: runs-on: windows-2022 env: - ANSYS_VERSION: 221 - + ANSYS_VERSION: 261 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 - id: install-dpf uses: ./install-dpf-server @@ -41,10 +40,10 @@ jobs: runs-on: ubuntu-latest env: - ANSYS_VERSION: 221 + ANSYS_VERSION: 261 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 - id: install-dpf uses: ./install-dpf-server