-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from The-Standard-Organization/users/cjdutoit…
…/foundations-checkout-task MINOR FOUNDATIONS: CheckoutTaskV4
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
ADotNet/Models/Pipelines/GithubPipelines/DotNets/Tasks/CheckoutTaskV4.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// --------------------------------------------------------------------------- | ||
// Copyright (c) Hassan Habib & Shri Humrudha Jagathisun All rights reserved. | ||
// Licensed under the MIT License. | ||
// See License.txt in the project root for license information. | ||
// --------------------------------------------------------------------------- | ||
|
||
namespace ADotNet.Models.Pipelines.GithubPipelines.DotNets.Tasks | ||
{ | ||
/// <summary> | ||
/// A task that that checks out your source code repository into the runner environment | ||
/// where your GitHub Actions workflows are executed. | ||
/// </summary> | ||
public class CheckoutTaskV4 : GithubTask | ||
{ | ||
/// <summary> | ||
/// Represents the usage of an external action or a specific version of an action in a GitHub Actions job step. | ||
/// Default value: actions/checkout@v4 | ||
/// </summary> | ||
public override string Uses { get; set; } = "actions/checkout@v4"; | ||
} | ||
} |