0
1
Fork 0
mirror of https://github.com/actions/checkout synced 2024-06-30 16:32:38 +02:00

Inspect git version during test-proxy

This commit is contained in:
John Wesley Walker III 2024-02-16 15:10:12 +01:00 committed by GitHub
parent 268a122c29
commit b300d42bb0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,7 @@ on:
- releases/* - releases/*
# Note when you see patterns like "ref: test-data/v2/basic" within this workflow, # Note that when you see patterns like "ref: test-data/v2/basic" within this workflow,
# these refer to "test-data" branches on this actions/checkout repo. # these refer to "test-data" branches on this actions/checkout repo.
# (For example, test-data/v2/basic -> https://github.com/actions/checkout/tree/test-data/v2/basic) # (For example, test-data/v2/basic -> https://github.com/actions/checkout/tree/test-data/v2/basic)
@ -204,14 +204,17 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Inspect Git Version
run: git --version
# Basic checkout using git # Basic checkout using git
- name: Checkout basic - name: Checkout basic
uses: ./ uses: ./
with: with:
ref: test-data/v2/basic ref: test-data/v2/basic
path: basic path: basic
# - name: Verify basic - name: Verify basic
# run: __test__/verify-basic.sh run: __test__/verify-basic.sh
# Basic checkout using REST API # Basic checkout using REST API
- name: Remove basic - name: Remove basic