Skip to content

myci-actions/checkout

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

checkout github sources using git

This action is a replacement of standard github’s actions/checkout action. This action is implemented as composite action, so it does not require node.js interpreter. The standard actions/checkout is written in javascript and sometimes it is not possible to have node12 injected to the container.

prerequisites

  • git must be available. So, make sure git is installed before calling this action.

step syntax

- name: <name>
  uses: myci-actions/checkout@<version>
  with:
    submodules: <true/false>

arguments:

  • <submodules> - Whether to clone submodules or not. Branch-tracking submodules are updated to the branch tip. Optional. Default value: true.

Step example:

- name: checkout sources
  uses: myci-actions/checkout@8