diff --git a/.github/workflows/build-gh-pages.yml b/.github/workflows/build-gh-pages.yml index 915c9ac..1353b2b 100644 --- a/.github/workflows/build-gh-pages.yml +++ b/.github/workflows/build-gh-pages.yml @@ -22,17 +22,16 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Setup .NET 3.1 - uses: actions/setup-dotnet@v3 + - name: Setup dotnet + uses: actions/setup-dotnet@v4 with: - dotnet-version: 3.1.301 - - - name: Setup .NET 5 - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 5.0.102 + dotnet-version: | + 3.1.x + 5.0.x + 6.0.x + 7.0.x - name: Restore dotnet tools run: dotnet tool restore @@ -51,4 +50,4 @@ jobs: TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages # The branch the action should deploy to. FOLDER: ./src/_public # The folder the action should deploy. - CLEAN: true # Automatically remove deleted files from the deploy branch \ No newline at end of file + CLEAN: true # Automatically remove deleted files from the deploy branch