From bb7bdaac240180efc29e28d358fb0d6f575a7e7d Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Fri, 24 May 2024 11:05:16 +0200 Subject: [PATCH 1/3] Update release.config.js --- release.config.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/release.config.js b/release.config.js index 4632c511..e330a175 100644 --- a/release.config.js +++ b/release.config.js @@ -90,11 +90,11 @@ async function config() { ] }], ["@semantic-release/exec", { - 'verifyConditionsCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin/Release/netstandard2.0', - 'prepareCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin/Release/netstandard2.0', - 'publishCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin/Release/netstandard2.0', - 'successCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin/Release/netstandard2.0', - 'failCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin/Release/netstandard2.0', + 'verifyConditionsCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin', + 'prepareCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin', + 'publishCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin', + 'successCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin', + 'failCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin', }], ['@droidsolutions-oss/semantic-release-nuget', { projectPath: './Parse/Parse.csproj', From 4c0f5b14e5ee49f3c1072aca0e2765064be7aeb2 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Fri, 24 May 2024 11:09:12 +0200 Subject: [PATCH 2/3] Update release.config.js --- release.config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/release.config.js b/release.config.js index e330a175..f9e52ffe 100644 --- a/release.config.js +++ b/release.config.js @@ -89,6 +89,13 @@ async function config() { } ] }], + ["@semantic-release/exec", { + 'verifyConditionsCmd': 'find / -name "Parse.dll" 2>/dev/null', + 'prepareCmd': 'find / -name "Parse.dll" 2>/dev/null', + 'publishCmd': 'find / -name "Parse.dll" 2>/dev/null', + 'successCmd': 'find / -name "Parse.dll" 2>/dev/null', + 'failCmd': 'find / -name "Parse.dll" 2>/dev/null', + }], ["@semantic-release/exec", { 'verifyConditionsCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin', 'prepareCmd': 'ls -la /home/runner/work/Parse-SDK-dotNET/Parse-SDK-dotNET/Parse/bin', From 21de36ca7e89c95f9c1ccc52ed5ec9b0e2997023 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sat, 4 Apr 2026 19:13:39 +0100 Subject: [PATCH 3/3] ci: Replace third-party GitHub Actions with trusted alternatives --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb608c65..71523de6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,9 +35,7 @@ jobs: - name: Restore NuGet packages run: nuget restore Parse.sln - name: Install Chocolatey packages - uses: crazy-max/ghaction-chocolatey@v1 - with: - args: 'install opencover.portable codecov -y' + run: choco install opencover.portable codecov -y - name: Build run: dotnet build Parse.sln --configuration Debug --no-restore /p:DebugType=full /p:GenerateFullPaths=true /p:CollectCoverage=false - name: Run tests with coverage