An action for checking out a repository
Find a file
2025-10-05 20:47:59 +02:00
action.yml feat: use go sdk 2025-08-18 22:54:48 +02:00
Dockerfile feat: use go sdk 2025-08-18 22:54:48 +02:00
go.mod chore: update domain to code.geekeey.de 2025-09-30 21:30:19 +02:00
go.sum chore: update domain to code.geekeey.de 2025-09-30 21:30:19 +02:00
LICENSE feat: use go sdk 2025-08-18 22:54:48 +02:00
main.go chore: update domain to code.geekeey.de 2025-09-30 21:30:19 +02:00
README.md chore: add readme example 2025-10-05 20:47:59 +02:00

checkout

uses: actions/checkout:1.0.0
with:
  # The path to the repository to checkout. Must be accessible with the pipeline
  # token on publiclly
  repository: ${{ github.server_url }}/${{ github.repository }}.git
  # Relative path under $GITHUB_WORKSPACE to place the repository
  path: .
  # The branch, tag or SHA to checkout. When checking out the repository that
  # triggered a workflow, this defaults to the reference or SHA for that event.
  # Otherwise, uses the default branch.
  ref: ${{ github.ref || github.sha }}