diff --git a/build/steps-build-android.yml b/build/steps-build-android.yml index 8eafa178..3685d9d4 100644 --- a/build/steps-build-android.yml +++ b/build/steps-build-android.yml @@ -110,6 +110,6 @@ steps: condition: always() artifact: $(ArtifactName) -- task: PostBuildCleanup@3 +- task: PostBuildCleanup@4 displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!' condition: always() diff --git a/build/steps-build-ios.yml b/build/steps-build-ios.yml index 2c11ba70..514f7627 100644 --- a/build/steps-build-ios.yml +++ b/build/steps-build-ios.yml @@ -135,6 +135,6 @@ steps: condition: always() artifact: $(ArtifactName) -- task: PostBuildCleanup@3 +- task: PostBuildCleanup@4 displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!' condition: always() diff --git a/build/steps-build-release-notes.yml b/build/steps-build-release-notes.yml index c1484045..ef58ed94 100644 --- a/build/steps-build-release-notes.yml +++ b/build/steps-build-release-notes.yml @@ -10,7 +10,7 @@ steps: - powershell: New-Item -Path '$(ArtifactName)' -ItemType Directory displayName: Create ReleaseNotes folder -- task: nventiveReleaseNotesCompiler@5 +- task: nventiveReleaseNotesCompiler@6 displayName: 'Compile Release Notes' inputs: EnvironmentName: $(ApplicationEnvironment) diff --git a/build/steps-build-tests.yml b/build/steps-build-tests.yml index f58aa329..90eb4074 100644 --- a/build/steps-build-tests.yml +++ b/build/steps-build-tests.yml @@ -58,6 +58,6 @@ steps: condition: always() artifact: $(ArtifactName) -- task: PostBuildCleanup@3 +- task: PostBuildCleanup@4 displayName: 'Post-Build cleanup: Cleanup files to keep build server clean!' condition: always() diff --git a/build/steps-build-windows.yml b/build/steps-build-windows.yml index 7a894cfe..afcfc0a2 100644 --- a/build/steps-build-windows.yml +++ b/build/steps-build-windows.yml @@ -41,6 +41,6 @@ steps: condition: always() artifact: $(ArtifactName) -- task: PostBuildCleanup@3 +- task: PostBuildCleanup@4 displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!' condition: always() diff --git a/build/templates/gitversion.yml b/build/templates/gitversion.yml index 97f7a7ec..6cb20ff9 100644 --- a/build/templates/gitversion.yml +++ b/build/templates/gitversion.yml @@ -4,13 +4,13 @@ default: '$(Build.SourcesDirectory)/build/gitversion-config.yml' steps: - - task: gitversion/setup@0 + - task: gitversion/setup@3 retryCountOnTaskFailure: 3 inputs: versionSpec: '5.12.0' displayName: 'Install GitVersion' - - task: gitversion/execute@0 + - task: gitversion/execute@3 inputs: useConfigFile: true configFilePath: ${{ parameters.configFilePath }} diff --git a/build/templates/mobsf-scan.yml b/build/templates/mobsf-scan.yml index d455f5cd..2a9667ff 100644 --- a/build/templates/mobsf-scan.yml +++ b/build/templates/mobsf-scan.yml @@ -144,6 +144,6 @@ steps: ArtifactName: ${{parameters.artifactName}}_Security_Reports publishLocation: 'Container' -- task: PostBuildCleanup@3 +- task: PostBuildCleanup@4 displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!' condition: always() \ No newline at end of file diff --git a/src/cli/.azuredevops/stage-publish-cli.yml b/src/cli/.azuredevops/stage-publish-cli.yml index c0d6ad39..149b93b6 100644 --- a/src/cli/.azuredevops/stage-publish-cli.yml +++ b/src/cli/.azuredevops/stage-publish-cli.yml @@ -38,6 +38,6 @@ jobs: projectDirectory: '${{ parameters.pathToSrc }}/cli' condition: failed() - - task: PostBuildCleanup@3 + - task: PostBuildCleanup@4 displayName: 'Post-Build cleanup : Cleanup files to keep build server clean!' condition: always() diff --git a/src/cli/CHANGELOG.md b/src/cli/CHANGELOG.md index 383d700f..884eea93 100644 --- a/src/cli/CHANGELOG.md +++ b/src/cli/CHANGELOG.md @@ -7,6 +7,7 @@ Prefix your items with `(Template)` if the change is about the template and not ## 0.24.2 - General improvements, including sample documentation (see `src/cli/example/README.md`). +- Update versions of CI/CD tasks. ## 0.24.1 - Add `getFromStream` to have ViewModel properties that automatically update based on `Stream` sources. diff --git a/src/cli/example/README.md b/src/cli/example/README.md index 2fe3542b..e2187a6d 100644 --- a/src/cli/example/README.md +++ b/src/cli/example/README.md @@ -2,7 +2,7 @@ The `flutter_application_generator` source code includes a complete working example in the `src/app/` folder. It's a simple joke browser app that uses the Reddit API to display jokes posted to the `r/dadjokes` subreddit and allows you to manage favorites (add / remove). It also includes an authentication example. -Before running the example, it's neccessary to run the `build_runner` package in order to create the required generated files. Using your terminal of choice, navigate to the `src/app/` folder and run the following: +Before running the example, it's necessary to run the `build_runner` package in order to create the required generated files. Using your terminal of choice, navigate to the `src/app/` folder and run the following: ```bash dart run build_runner build --delete-conflicting-outputs