Skip to content

Commit

Permalink
Merge pull request #127 from The-Standard-Organization/users/cjdutoit…
Browse files Browse the repository at this point in the history
…/foundations-checkout-task

MINOR FOUNDATIONS:  CheckoutTaskV4
  • Loading branch information
hassanhabib authored Jan 8, 2025
2 parents 40ced4c + 802745e commit 7c84783
Showing 1 changed file with 21 additions and 0 deletions.
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";
}
}

0 comments on commit 7c84783

Please sign in to comment.