From 7bd96715e73f6120dbbb68886f167ab5a0beb88a Mon Sep 17 00:00:00 2001 From: "Martin Hinshelwood nkdAgility.com" Date: Tue, 19 Nov 2024 07:59:09 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=9D=20(index.md):=20update=20docum?= =?UTF-8?q?entation=20links=20and=20correct=20preview=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the "Getting Started" link to point directly to the index.md file for better navigation. Remove the redundant "How To Migrate Things" link to streamline the documentation. Correct the preview documentation URL to ensure users are directed to the correct preview site. These changes improve the accuracy and usability of the documentation. --- docs/index.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/index.md b/docs/index.md index 7eac98cc8..5f7bbf6d3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -54,15 +54,14 @@ For the most part we support moving data between `((Azure DevOps Server | Team F - [Installation](/setup/installation.md) - [Permissions](/setup/permissions.md) -- [Getting Started](/getting-started/) +- [Getting Started](/getting-started/index.md) - [Configuration Reference](./Reference/) - [FAQ](faq.md) - [Support](support.md) -- [How To Migrate Things](./HowTo/index.md) - [Community Support](https://github.com/nkdAgility/azure-devops-migration-tools/discussions) - [Commercial Support](https://nkdagility.com/capabilities/azure-devops-migration-services/) -The documentation for the preview is on [Preview](https://nkdagility.com/docs/azure-devops-migration-tools/preview/)] +The documentation for the preview is on [Preview](https://preview.nkdagility.com/docs/azure-devops-migration-tools/)] #### External Walkthroughs and Reviews From 50fd3ffa697739864c2687250810c96e520ad189 Mon Sep 17 00:00:00 2001 From: "Martin Hinshelwood nkdAgility.com" Date: Tue, 19 Nov 2024 08:07:04 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20(workflows):=20upgrade?= =?UTF-8?q?=20GitHub=20Actions=20dependencies=20to=20latest=20versions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade various GitHub Actions dependencies to their latest versions to ensure compatibility, security, and access to new features. The `upload-artifact` and `download-artifact` actions are updated from v3 to v4, `gitversion` actions from v1.1.1 to v3.0.2, `setup-java` from v2 to v4, and `stale` action from v1 to v9. These updates help maintain the stability and efficiency of the CI/CD pipeline by leveraging improvements and bug fixes in the newer versions of these actions. --- .github/workflows/MigrationToolsTelemetery.yml | 4 ++-- .github/workflows/main.yml | 6 +++--- .github/workflows/stale.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/MigrationToolsTelemetery.yml b/.github/workflows/MigrationToolsTelemetery.yml index 415b1e22a..d3e49ee2b 100644 --- a/.github/workflows/MigrationToolsTelemetery.yml +++ b/.github/workflows/MigrationToolsTelemetery.yml @@ -32,7 +32,7 @@ jobs: - name: Publish run: dotnet publish "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}" - name: Publish Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: functionapp path: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} @@ -41,7 +41,7 @@ jobs: needs: build steps: - name: Download artifact from build job - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: functionapp path: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 201c92fea..d9f7b273f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,13 +69,13 @@ jobs: $newBranchName = "contrib/$branchName" git checkout -b $newBranchName - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v1.1.1 + uses: gittools/actions/gitversion/setup@v3.0.2 with: versionSpec: '5.x' includePrerelease: true - name: Execute GitVersion id: gitversion - uses: gittools/actions/gitversion/execute@v1.1.1 + uses: gittools/actions/gitversion/execute@v3.0.2 with: useConfigFile: true - uses: dorny/paths-filter@v3 @@ -273,7 +273,7 @@ jobs: GitVersion_MajorMinorPatch: ${{ needs.Setup.outputs.GitVersion_MajorMinorPatch }} steps: - name: Set up JDK 17 - uses: actions/setup-java@v2 + uses: actions/setup-java@v4 if: ${{ !(github.event.pull_request.head.repo.fork) }} with: java-version: 17 diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 0d901f27f..5f1f26eb3 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v1 + - uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-label: 'no-issue-activity'