[codex] Update Aspire and .NET dependencies #139
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Copilot Setup" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| pull_request: | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| jobs: | |
| copilot-setup-steps: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.301 | |
| - name: Install Aspire CLI | |
| run: | | |
| export PATH="$HOME/.dotnet/tools:$PATH" | |
| if dotnet tool list --global | grep -Eiq '^aspire\.cli[[:space:]]'; then | |
| dotnet tool update --global Aspire.Cli --version 13.4.4 | |
| else | |
| dotnet tool install --global Aspire.Cli --version 13.4.4 | |
| fi | |
| echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH" | |
| aspire --version | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ~/.nuget/packages | |
| key: nuget-${{ runner.os }}-${{ hashFiles('**/packages.lock.json') }} | |
| restore-keys: | | |
| nuget-${{ runner.os }}- | |
| - name: Nuget Restore | |
| run: dotnet restore | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Cache node_modules | |
| uses: actions/cache@v5 | |
| id: cache-node-modules | |
| with: | |
| path: src/Exceptionless.Web/ClientApp/node_modules | |
| key: node-modules-${{ hashFiles('src/Exceptionless.Web/ClientApp/package-lock.json') }} | |
| - name: Install Npm Packages | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| working-directory: src/Exceptionless.Web/ClientApp | |
| run: npm ci |