Compare commits
62 Commits
users/eric
...
hross-zeit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c43fdbfb30 | ||
|
|
239235dd46 | ||
|
|
2955f2419d | ||
|
|
5aa50f005d | ||
|
|
be6c44d969 | ||
|
|
dac8cc78a1 | ||
|
|
2036a08e25 | ||
|
|
592cf69a22 | ||
|
|
a4b69b4886 | ||
|
|
1433f62caa | ||
|
|
61b9e3751b | ||
|
|
28c7f3d2b5 | ||
|
|
fb6f360df2 | ||
|
|
b4483adec3 | ||
|
|
00a3be8934 | ||
|
|
453ee27fca | ||
|
|
65865e15a1 | ||
|
|
aabbfeb2ce | ||
|
|
e52d022eb5 | ||
|
|
2ff2fbdea4 | ||
|
|
df86c829eb | ||
|
|
97b30c411c | ||
|
|
86f86b36ef | ||
|
|
7523e23789 | ||
|
|
ac455590d1 | ||
|
|
94c2de77cc | ||
|
|
01aecccf73 | ||
|
|
85b1f35505 | ||
|
|
574281d34c | ||
|
|
fbb30c60ab | ||
|
|
58070a9fc3 | ||
|
|
9a3a9ade82 | ||
|
|
b2e6b7ed13 | ||
|
|
80602fafba | ||
|
|
b4626ce19c | ||
|
|
422dc45671 | ||
|
|
204620207c | ||
|
|
f219062370 | ||
|
|
096e927750 | ||
|
|
f858c22e96 | ||
|
|
77904fd431 | ||
|
|
06218e4404 | ||
|
|
61fd8fd0c7 | ||
|
|
f95f2a3856 | ||
|
|
f90c7b395d | ||
|
|
090d9c9dfd | ||
|
|
db41740e12 | ||
|
|
bc50a995b8 | ||
|
|
dfd70d4a2d | ||
|
|
ae525b2262 | ||
|
|
f466b96953 | ||
|
|
c85684db76 | ||
|
|
299dd5064e | ||
|
|
722adc63f1 | ||
|
|
3537747199 | ||
|
|
a6747255bd | ||
|
|
c170eefc26 | ||
|
|
a572f640b0 | ||
|
|
cab31617d8 | ||
|
|
5881116d18 | ||
|
|
7990b10a0c | ||
|
|
01a434328a |
144
.github/workflows/test.yml
vendored
144
.github/workflows/test.yml
vendored
@@ -4,20 +4,22 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- main
|
||||||
- releases/*
|
- releases/*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1 # todo: switch to v2
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 12.x
|
||||||
|
- uses: actions/checkout@v2
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- run: npm run format-check
|
- run: npm run format-check
|
||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
- run: npm run pack
|
- run: npm test
|
||||||
- run: npm run gendocs
|
|
||||||
- name: Verify no unstaged changes
|
- name: Verify no unstaged changes
|
||||||
run: __test__/verify-no-unstaged-changes.sh
|
run: __test__/verify-no-unstaged-changes.sh
|
||||||
|
|
||||||
@@ -30,10 +32,10 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# Clone this repo
|
# Clone this repo
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v1 # todo: switch to V2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
# Basic checkout
|
# Basic checkout
|
||||||
- name: Basic checkout
|
- name: Checkout basic
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
ref: test-data/v2/basic
|
ref: test-data/v2/basic
|
||||||
@@ -46,7 +48,7 @@ jobs:
|
|||||||
- name: Modify work tree
|
- name: Modify work tree
|
||||||
shell: bash
|
shell: bash
|
||||||
run: __test__/modify-work-tree.sh
|
run: __test__/modify-work-tree.sh
|
||||||
- name: Clean checkout
|
- name: Checkout clean
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
ref: test-data/v2/basic
|
ref: test-data/v2/basic
|
||||||
@@ -56,12 +58,12 @@ jobs:
|
|||||||
run: __test__/verify-clean.sh
|
run: __test__/verify-clean.sh
|
||||||
|
|
||||||
# Side by side
|
# Side by side
|
||||||
- name: Side by side checkout 1
|
- name: Checkout side by side 1
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
ref: test-data/v2/side-by-side-1
|
ref: test-data/v2/side-by-side-1
|
||||||
path: side-by-side-1
|
path: side-by-side-1
|
||||||
- name: Side by side checkout 2
|
- name: Checkout side by side 2
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
ref: test-data/v2/side-by-side-2
|
ref: test-data/v2/side-by-side-2
|
||||||
@@ -71,7 +73,7 @@ jobs:
|
|||||||
run: __test__/verify-side-by-side.sh
|
run: __test__/verify-side-by-side.sh
|
||||||
|
|
||||||
# LFS
|
# LFS
|
||||||
- name: LFS checkout
|
- name: Checkout LFS
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
repository: actions/checkout # hardcoded, otherwise doesn't work from a fork
|
repository: actions/checkout # hardcoded, otherwise doesn't work from a fork
|
||||||
@@ -81,3 +83,125 @@ jobs:
|
|||||||
- name: Verify LFS
|
- name: Verify LFS
|
||||||
shell: bash
|
shell: bash
|
||||||
run: __test__/verify-lfs.sh
|
run: __test__/verify-lfs.sh
|
||||||
|
|
||||||
|
# Submodules false
|
||||||
|
- name: Checkout submodules false
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
ref: test-data/v2/submodule-ssh-url
|
||||||
|
path: submodules-false
|
||||||
|
- name: Verify submodules false
|
||||||
|
run: __test__/verify-submodules-false.sh
|
||||||
|
|
||||||
|
# Submodules one level
|
||||||
|
- name: Checkout submodules true
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
ref: test-data/v2/submodule-ssh-url
|
||||||
|
path: submodules-true
|
||||||
|
submodules: true
|
||||||
|
- name: Verify submodules true
|
||||||
|
run: __test__/verify-submodules-true.sh
|
||||||
|
|
||||||
|
# Submodules recursive
|
||||||
|
- name: Checkout submodules recursive
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
ref: test-data/v2/submodule-ssh-url
|
||||||
|
path: submodules-recursive
|
||||||
|
submodules: recursive
|
||||||
|
- name: Verify submodules recursive
|
||||||
|
run: __test__/verify-submodules-recursive.sh
|
||||||
|
|
||||||
|
# Basic checkout using REST API
|
||||||
|
- name: Remove basic
|
||||||
|
if: runner.os != 'windows'
|
||||||
|
run: rm -rf basic
|
||||||
|
- name: Remove basic (Windows)
|
||||||
|
if: runner.os == 'windows'
|
||||||
|
shell: cmd
|
||||||
|
run: rmdir /s /q basic
|
||||||
|
- name: Override git version
|
||||||
|
if: runner.os != 'windows'
|
||||||
|
run: __test__/override-git-version.sh
|
||||||
|
- name: Override git version (Windows)
|
||||||
|
if: runner.os == 'windows'
|
||||||
|
run: __test__\\override-git-version.cmd
|
||||||
|
- name: Checkout basic using REST API
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
ref: test-data/v2/basic
|
||||||
|
path: basic
|
||||||
|
- name: Verify basic
|
||||||
|
run: __test__/verify-basic.sh --archive
|
||||||
|
|
||||||
|
test-proxy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: alpine/git:latest
|
||||||
|
options: --dns 127.0.0.1
|
||||||
|
services:
|
||||||
|
squid-proxy:
|
||||||
|
image: datadog/squid:latest
|
||||||
|
ports:
|
||||||
|
- 3128:3128
|
||||||
|
env:
|
||||||
|
https_proxy: http://squid-proxy:3128
|
||||||
|
steps:
|
||||||
|
# Clone this repo
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
# Basic checkout using git
|
||||||
|
- name: Checkout basic
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
ref: test-data/v2/basic
|
||||||
|
path: basic
|
||||||
|
- name: Verify basic
|
||||||
|
run: __test__/verify-basic.sh
|
||||||
|
|
||||||
|
# Basic checkout using REST API
|
||||||
|
- name: Remove basic
|
||||||
|
run: rm -rf basic
|
||||||
|
- name: Override git version
|
||||||
|
run: __test__/override-git-version.sh
|
||||||
|
- name: Basic checkout using REST API
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
ref: test-data/v2/basic
|
||||||
|
path: basic
|
||||||
|
- name: Verify basic
|
||||||
|
run: __test__/verify-basic.sh --archive
|
||||||
|
|
||||||
|
test-bypass-proxy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
https_proxy: http://no-such-proxy:3128
|
||||||
|
no_proxy: api.github.com,github.com
|
||||||
|
steps:
|
||||||
|
# Clone this repo
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
# Basic checkout using git
|
||||||
|
- name: Checkout basic
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
ref: test-data/v2/basic
|
||||||
|
path: basic
|
||||||
|
- name: Verify basic
|
||||||
|
run: __test__/verify-basic.sh
|
||||||
|
- name: Remove basic
|
||||||
|
run: rm -rf basic
|
||||||
|
|
||||||
|
# Basic checkout using REST API
|
||||||
|
- name: Override git version
|
||||||
|
run: __test__/override-git-version.sh
|
||||||
|
- name: Checkout basic using REST API
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
ref: test-data/v2/basic
|
||||||
|
path: basic
|
||||||
|
- name: Verify basic
|
||||||
|
run: __test__/verify-basic.sh --archive
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
|
__test__/_temp
|
||||||
lib/
|
lib/
|
||||||
node_modules/
|
node_modules/
|
||||||
35
CHANGELOG.md
35
CHANGELOG.md
@@ -1,5 +1,40 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v2.3.1
|
||||||
|
|
||||||
|
- [Fix default branch resolution for .wiki and when using SSH](https://github.com/actions/checkout/pull/284)
|
||||||
|
|
||||||
|
|
||||||
|
## v2.3.0
|
||||||
|
|
||||||
|
- [Fallback to the default branch](https://github.com/actions/checkout/pull/278)
|
||||||
|
|
||||||
|
## v2.2.0
|
||||||
|
|
||||||
|
- [Fetch all history for all tags and branches when fetch-depth=0](https://github.com/actions/checkout/pull/258)
|
||||||
|
|
||||||
|
## v2.1.1
|
||||||
|
|
||||||
|
- Changes to support GHES ([here](https://github.com/actions/checkout/pull/236) and [here](https://github.com/actions/checkout/pull/248))
|
||||||
|
|
||||||
|
## v2.1.0
|
||||||
|
|
||||||
|
- [Group output](https://github.com/actions/checkout/pull/191)
|
||||||
|
- [Changes to support GHES alpha release](https://github.com/actions/checkout/pull/199)
|
||||||
|
- [Persist core.sshCommand for submodules](https://github.com/actions/checkout/pull/184)
|
||||||
|
- [Add support ssh](https://github.com/actions/checkout/pull/163)
|
||||||
|
- [Convert submodule SSH URL to HTTPS, when not using SSH](https://github.com/actions/checkout/pull/179)
|
||||||
|
- [Add submodule support](https://github.com/actions/checkout/pull/157)
|
||||||
|
- [Follow proxy settings](https://github.com/actions/checkout/pull/144)
|
||||||
|
- [Fix ref for pr closed event when a pr is merged](https://github.com/actions/checkout/pull/141)
|
||||||
|
- [Fix issue checking detached when git less than 2.22](https://github.com/actions/checkout/pull/128)
|
||||||
|
|
||||||
|
## v2.0.0
|
||||||
|
|
||||||
|
- [Do not pass cred on command line](https://github.com/actions/checkout/pull/108)
|
||||||
|
- [Add input persist-credentials](https://github.com/actions/checkout/pull/107)
|
||||||
|
- [Fallback to REST API to download repo](https://github.com/actions/checkout/pull/104)
|
||||||
|
|
||||||
## v2 (beta)
|
## v2 (beta)
|
||||||
|
|
||||||
- Improved fetch performance
|
- Improved fetch performance
|
||||||
|
|||||||
200
README.md
200
README.md
@@ -2,29 +2,31 @@
|
|||||||
<a href="https://github.com/actions/checkout"><img alt="GitHub Actions status" src="https://github.com/actions/checkout/workflows/test-local/badge.svg"></a>
|
<a href="https://github.com/actions/checkout"><img alt="GitHub Actions status" src="https://github.com/actions/checkout/workflows/test-local/badge.svg"></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
# Checkout V2 beta
|
# Checkout V2
|
||||||
|
|
||||||
This action checks-out your repository under `$GITHUB_WORKSPACE`, so your workflow can access it.
|
This action checks-out your repository under `$GITHUB_WORKSPACE`, so your workflow can access it.
|
||||||
|
|
||||||
By default, the repository that triggered the workflow is checked-out, for the ref/SHA that triggered the event.
|
Only a single commit is fetched by default, for the ref/SHA that triggered the workflow. Set `fetch-depth: 0` to fetch all history for all branches and tags. Refer [here](https://help.github.com/en/articles/events-that-trigger-workflows) to learn which commit `$GITHUB_SHA` points to for different events.
|
||||||
|
|
||||||
Refer [here](https://help.github.com/en/articles/events-that-trigger-workflows) to learn which commit `$GITHUB_SHA` points to for different events.
|
The auth token is persisted in the local git config. This enables your scripts to run authenticated git commands. The token is removed during post-job cleanup. Set `persist-credentials: false` to opt-out.
|
||||||
|
|
||||||
Changes in V2:
|
When Git 2.18 or higher is not in your PATH, falls back to the REST API to download the files.
|
||||||
- Improved fetch performance
|
|
||||||
- The default behavior now fetches only the SHA being checked-out
|
# What's new
|
||||||
|
|
||||||
|
- Improved performance
|
||||||
|
- Fetches only a single commit by default
|
||||||
- Script authenticated git commands
|
- Script authenticated git commands
|
||||||
- Persists `with.token` in the local git config
|
- Auth token persisted in the local git config
|
||||||
- Enables your scripts to run authenticated git commands
|
- Supports SSH
|
||||||
- Post-job cleanup removes the token
|
|
||||||
- Coming soon: Opt out by setting `with.persist-credentials` to `false`
|
|
||||||
- Creates a local branch
|
- Creates a local branch
|
||||||
- No longer detached HEAD when checking out a branch
|
- No longer detached HEAD when checking out a branch
|
||||||
- A local branch is created with the corresponding upstream branch set
|
|
||||||
- Improved layout
|
- Improved layout
|
||||||
- `with.path` is always relative to `github.workspace`
|
- The input `path` is always relative to $GITHUB_WORKSPACE
|
||||||
- Aligns better with container actions, where `github.workspace` gets mapped in
|
- Aligns better with container actions, where $GITHUB_WORKSPACE gets mapped in
|
||||||
- Removed input `submodules`
|
- Fallback to REST API download
|
||||||
|
- When Git 2.18 or higher is not in the PATH, the REST API will be used to download the files
|
||||||
|
- When using a job container, the container's PATH is used
|
||||||
|
|
||||||
Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous versions.
|
Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous versions.
|
||||||
|
|
||||||
@@ -32,20 +34,54 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
|
|||||||
|
|
||||||
<!-- start usage -->
|
<!-- start usage -->
|
||||||
```yaml
|
```yaml
|
||||||
- uses: actions/checkout@v2-beta
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
# Repository name with owner. For example, actions/checkout
|
# Repository name with owner. For example, actions/checkout
|
||||||
# Default: ${{ github.repository }}
|
# Default: ${{ github.repository }}
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|
||||||
# Ref to checkout (SHA, branch, tag). For the repository that triggered the
|
# The branch, tag or SHA to checkout. When checking out the repository that
|
||||||
# workflow, defaults to the ref/SHA for the event. Otherwise defaults to master.
|
# triggered a workflow, this defaults to the reference or SHA for that event.
|
||||||
|
# Otherwise, uses the default branch.
|
||||||
ref: ''
|
ref: ''
|
||||||
|
|
||||||
# Access token for clone repository
|
# Personal access token (PAT) used to fetch the repository. The PAT is configured
|
||||||
|
# with the local git config, which enables your scripts to run authenticated git
|
||||||
|
# commands. The post-job step removes the PAT.
|
||||||
|
#
|
||||||
|
# We recommend using a service account with the least permissions necessary. Also
|
||||||
|
# when generating a new PAT, select the least scopes necessary.
|
||||||
|
#
|
||||||
|
# [Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
|
||||||
|
#
|
||||||
# Default: ${{ github.token }}
|
# Default: ${{ github.token }}
|
||||||
token: ''
|
token: ''
|
||||||
|
|
||||||
|
# SSH key used to fetch the repository. The SSH key is configured with the local
|
||||||
|
# git config, which enables your scripts to run authenticated git commands. The
|
||||||
|
# post-job step removes the SSH key.
|
||||||
|
#
|
||||||
|
# We recommend using a service account with the least permissions necessary.
|
||||||
|
#
|
||||||
|
# [Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
|
||||||
|
ssh-key: ''
|
||||||
|
|
||||||
|
# Known hosts in addition to the user and global host key database. The public SSH
|
||||||
|
# keys for a host may be obtained using the utility `ssh-keyscan`. For example,
|
||||||
|
# `ssh-keyscan github.com`. The public key for github.com is always implicitly
|
||||||
|
# added.
|
||||||
|
ssh-known-hosts: ''
|
||||||
|
|
||||||
|
# Whether to perform strict host key checking. When true, adds the options
|
||||||
|
# `StrictHostKeyChecking=yes` and `CheckHostIP=no` to the SSH command line. Use
|
||||||
|
# the input `ssh-known-hosts` to configure additional hosts.
|
||||||
|
# Default: true
|
||||||
|
ssh-strict: ''
|
||||||
|
|
||||||
|
# Whether to configure the token or SSH key with the local git config
|
||||||
|
# Default: true
|
||||||
|
persist-credentials: ''
|
||||||
|
|
||||||
# Relative path under $GITHUB_WORKSPACE to place the repository
|
# Relative path under $GITHUB_WORKSPACE to place the repository
|
||||||
path: ''
|
path: ''
|
||||||
|
|
||||||
@@ -53,41 +89,147 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
|
|||||||
# Default: true
|
# Default: true
|
||||||
clean: ''
|
clean: ''
|
||||||
|
|
||||||
# Number of commits to fetch. 0 indicates all history.
|
# Number of commits to fetch. 0 indicates all history for all branches and tags.
|
||||||
# Default: 1
|
# Default: 1
|
||||||
fetch-depth: ''
|
fetch-depth: ''
|
||||||
|
|
||||||
# Whether to download Git-LFS files
|
# Whether to download Git-LFS files
|
||||||
# Default: false
|
# Default: false
|
||||||
lfs: ''
|
lfs: ''
|
||||||
|
|
||||||
|
# Whether to checkout submodules: `true` to checkout submodules or `recursive` to
|
||||||
|
# recursively checkout submodules.
|
||||||
|
#
|
||||||
|
# When the `ssh-key` input is not provided, SSH URLs beginning with
|
||||||
|
# `git@github.com:` are converted to HTTPS.
|
||||||
|
#
|
||||||
|
# Default: false
|
||||||
|
submodules: ''
|
||||||
```
|
```
|
||||||
<!-- end usage -->
|
<!-- end usage -->
|
||||||
|
|
||||||
|
# Scenarios
|
||||||
|
|
||||||
|
- [Fetch all history for all tags and branches](#Fetch-all-history-for-all-tags-and-branches)
|
||||||
|
- [Checkout a different branch](#Checkout-a-different-branch)
|
||||||
|
- [Checkout HEAD^](#Checkout-HEAD)
|
||||||
|
- [Checkout multiple repos (side by side)](#Checkout-multiple-repos-side-by-side)
|
||||||
|
- [Checkout multiple repos (nested)](#Checkout-multiple-repos-nested)
|
||||||
|
- [Checkout multiple repos (private)](#Checkout-multiple-repos-private)
|
||||||
|
- [Checkout pull request HEAD commit instead of merge commit](#Checkout-pull-request-HEAD-commit-instead-of-merge-commit)
|
||||||
|
- [Checkout pull request on closed event](#Checkout-pull-request-on-closed-event)
|
||||||
|
- [Push a commit using the built-in token](#Push-a-commit-using-the-built-in-token)
|
||||||
|
|
||||||
|
## Fetch all history for all tags and branches
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
```
|
||||||
|
|
||||||
## Checkout a different branch
|
## Checkout a different branch
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- uses: actions/checkout@v2-beta
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: some-branch
|
ref: my-branch
|
||||||
```
|
```
|
||||||
|
|
||||||
## Checkout a different, private repository
|
## Checkout HEAD^
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- uses: actions/checkout@v2-beta
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: myAccount/myRepository
|
fetch-depth: 2
|
||||||
ref: refs/heads/master
|
- run: git checkout HEAD^
|
||||||
|
```
|
||||||
|
|
||||||
|
## Checkout multiple repos (side by side)
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: main
|
||||||
|
|
||||||
|
- name: Checkout tools repo
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
repository: my-org/my-tools
|
||||||
|
path: my-tools
|
||||||
|
```
|
||||||
|
|
||||||
|
## Checkout multiple repos (nested)
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Checkout tools repo
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
repository: my-org/my-tools
|
||||||
|
path: my-tools
|
||||||
|
```
|
||||||
|
|
||||||
|
## Checkout multiple repos (private)
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: main
|
||||||
|
|
||||||
|
- name: Checkout private tools
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
repository: my-org/my-private-tools
|
||||||
token: ${{ secrets.GitHub_PAT }} # `GitHub_PAT` is a secret that contains your PAT
|
token: ${{ secrets.GitHub_PAT }} # `GitHub_PAT` is a secret that contains your PAT
|
||||||
|
path: my-tools
|
||||||
```
|
```
|
||||||
> - `${{ github.token }}` is scoped to the current repository, so if you want to checkout another repository that is private you will need to provide your own [PAT](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line).
|
|
||||||
|
|
||||||
## Checkout the HEAD commit of a PR, rather than the merge commit
|
> - `${{ github.token }}` is scoped to the current repository, so if you want to checkout a different repository that is private you will need to provide your own [PAT](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line).
|
||||||
|
|
||||||
|
|
||||||
|
## Checkout pull request HEAD commit instead of merge commit
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- uses: actions/checkout@v2-beta
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: refs/pull/${{ github.event.number }}/head
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Checkout pull request on closed event
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
types: [opened, synchronize, closed]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
```
|
||||||
|
|
||||||
|
## Push a commit using the built-in token
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
on: push
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- run: |
|
||||||
|
date > generated.txt
|
||||||
|
git config user.name github-actions
|
||||||
|
git config user.email github-actions@github.com
|
||||||
|
git add .
|
||||||
|
git commit -m "generated"
|
||||||
|
git push
|
||||||
```
|
```
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|||||||
802
__test__/git-auth-helper.test.ts
Normal file
802
__test__/git-auth-helper.test.ts
Normal file
File diff suppressed because it is too large
Load Diff
441
__test__/git-directory-helper.test.ts
Normal file
441
__test__/git-directory-helper.test.ts
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,47 +1,50 @@
|
|||||||
import * as assert from 'assert'
|
import * as assert from 'assert'
|
||||||
|
import * as core from '@actions/core'
|
||||||
|
import * as fsHelper from '../lib/fs-helper'
|
||||||
|
import * as github from '@actions/github'
|
||||||
|
import * as inputHelper from '../lib/input-helper'
|
||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
import {ISourceSettings} from '../lib/git-source-provider'
|
import {IGitSourceSettings} from '../lib/git-source-settings'
|
||||||
|
|
||||||
const originalGitHubWorkspace = process.env['GITHUB_WORKSPACE']
|
const originalGitHubWorkspace = process.env['GITHUB_WORKSPACE']
|
||||||
const gitHubWorkspace = path.resolve('/checkout-tests/workspace')
|
const gitHubWorkspace = path.resolve('/checkout-tests/workspace')
|
||||||
|
|
||||||
// Late bind
|
// Inputs for mock @actions/core
|
||||||
let inputHelper: any
|
|
||||||
|
|
||||||
// Mock @actions/core
|
|
||||||
let inputs = {} as any
|
let inputs = {} as any
|
||||||
const mockCore = jest.genMockFromModule('@actions/core') as any
|
|
||||||
mockCore.getInput = (name: string) => {
|
|
||||||
return inputs[name]
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mock @actions/github
|
// Shallow clone original @actions/github context
|
||||||
const mockGitHub = jest.genMockFromModule('@actions/github') as any
|
let originalContext = {...github.context}
|
||||||
mockGitHub.context = {
|
|
||||||
repo: {
|
|
||||||
owner: 'some-owner',
|
|
||||||
repo: 'some-repo'
|
|
||||||
},
|
|
||||||
ref: 'refs/heads/some-ref',
|
|
||||||
sha: '1234567890123456789012345678901234567890'
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mock ./fs-helper
|
|
||||||
const mockFSHelper = jest.genMockFromModule('../lib/fs-helper') as any
|
|
||||||
mockFSHelper.directoryExistsSync = (path: string) => path == gitHubWorkspace
|
|
||||||
|
|
||||||
describe('input-helper tests', () => {
|
describe('input-helper tests', () => {
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
|
// Mock getInput
|
||||||
|
jest.spyOn(core, 'getInput').mockImplementation((name: string) => {
|
||||||
|
return inputs[name]
|
||||||
|
})
|
||||||
|
|
||||||
|
// Mock error/warning/info/debug
|
||||||
|
jest.spyOn(core, 'error').mockImplementation(jest.fn())
|
||||||
|
jest.spyOn(core, 'warning').mockImplementation(jest.fn())
|
||||||
|
jest.spyOn(core, 'info').mockImplementation(jest.fn())
|
||||||
|
jest.spyOn(core, 'debug').mockImplementation(jest.fn())
|
||||||
|
|
||||||
|
// Mock github context
|
||||||
|
jest.spyOn(github.context, 'repo', 'get').mockImplementation(() => {
|
||||||
|
return {
|
||||||
|
owner: 'some-owner',
|
||||||
|
repo: 'some-repo'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
github.context.ref = 'refs/heads/some-ref'
|
||||||
|
github.context.sha = '1234567890123456789012345678901234567890'
|
||||||
|
|
||||||
|
// Mock ./fs-helper directoryExistsSync()
|
||||||
|
jest
|
||||||
|
.spyOn(fsHelper, 'directoryExistsSync')
|
||||||
|
.mockImplementation((path: string) => path == gitHubWorkspace)
|
||||||
|
|
||||||
// GitHub workspace
|
// GitHub workspace
|
||||||
process.env['GITHUB_WORKSPACE'] = gitHubWorkspace
|
process.env['GITHUB_WORKSPACE'] = gitHubWorkspace
|
||||||
|
|
||||||
// Mocks
|
|
||||||
jest.setMock('@actions/core', mockCore)
|
|
||||||
jest.setMock('@actions/github', mockGitHub)
|
|
||||||
jest.setMock('../lib/fs-helper', mockFSHelper)
|
|
||||||
|
|
||||||
// Now import
|
|
||||||
inputHelper = require('../lib/input-helper')
|
|
||||||
})
|
})
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
@@ -50,20 +53,24 @@ describe('input-helper tests', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
afterAll(() => {
|
afterAll(() => {
|
||||||
// Reset GitHub workspace
|
// Restore GitHub workspace
|
||||||
delete process.env['GITHUB_WORKSPACE']
|
delete process.env['GITHUB_WORKSPACE']
|
||||||
if (originalGitHubWorkspace) {
|
if (originalGitHubWorkspace) {
|
||||||
process.env['GITHUB_WORKSPACE'] = originalGitHubWorkspace
|
process.env['GITHUB_WORKSPACE'] = originalGitHubWorkspace
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reset modules
|
// Restore @actions/github context
|
||||||
jest.resetModules()
|
github.context.ref = originalContext.ref
|
||||||
|
github.context.sha = originalContext.sha
|
||||||
|
|
||||||
|
// Restore
|
||||||
|
jest.restoreAllMocks()
|
||||||
})
|
})
|
||||||
|
|
||||||
it('sets defaults', () => {
|
it('sets defaults', () => {
|
||||||
const settings: ISourceSettings = inputHelper.getInputs()
|
const settings: IGitSourceSettings = inputHelper.getInputs()
|
||||||
expect(settings).toBeTruthy()
|
expect(settings).toBeTruthy()
|
||||||
expect(settings.accessToken).toBeFalsy()
|
expect(settings.authToken).toBeFalsy()
|
||||||
expect(settings.clean).toBe(true)
|
expect(settings.clean).toBe(true)
|
||||||
expect(settings.commit).toBeTruthy()
|
expect(settings.commit).toBeTruthy()
|
||||||
expect(settings.commit).toBe('1234567890123456789012345678901234567890')
|
expect(settings.commit).toBe('1234567890123456789012345678901234567890')
|
||||||
@@ -75,6 +82,19 @@ describe('input-helper tests', () => {
|
|||||||
expect(settings.repositoryPath).toBe(gitHubWorkspace)
|
expect(settings.repositoryPath).toBe(gitHubWorkspace)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('qualifies ref', () => {
|
||||||
|
let originalRef = github.context.ref
|
||||||
|
try {
|
||||||
|
github.context.ref = 'some-unqualified-ref'
|
||||||
|
const settings: IGitSourceSettings = inputHelper.getInputs()
|
||||||
|
expect(settings).toBeTruthy()
|
||||||
|
expect(settings.commit).toBe('1234567890123456789012345678901234567890')
|
||||||
|
expect(settings.ref).toBe('refs/heads/some-unqualified-ref')
|
||||||
|
} finally {
|
||||||
|
github.context.ref = originalRef
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
it('requires qualified repo', () => {
|
it('requires qualified repo', () => {
|
||||||
inputs.repository = 'some-unqualified-repo'
|
inputs.repository = 'some-unqualified-repo'
|
||||||
assert.throws(() => {
|
assert.throws(() => {
|
||||||
@@ -84,37 +104,23 @@ describe('input-helper tests', () => {
|
|||||||
|
|
||||||
it('roots path', () => {
|
it('roots path', () => {
|
||||||
inputs.path = 'some-directory/some-subdirectory'
|
inputs.path = 'some-directory/some-subdirectory'
|
||||||
const settings: ISourceSettings = inputHelper.getInputs()
|
const settings: IGitSourceSettings = inputHelper.getInputs()
|
||||||
expect(settings.repositoryPath).toBe(
|
expect(settings.repositoryPath).toBe(
|
||||||
path.join(gitHubWorkspace, 'some-directory', 'some-subdirectory')
|
path.join(gitHubWorkspace, 'some-directory', 'some-subdirectory')
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('sets correct default ref/sha for other repo', () => {
|
|
||||||
inputs.repository = 'some-owner/some-other-repo'
|
|
||||||
const settings: ISourceSettings = inputHelper.getInputs()
|
|
||||||
expect(settings.ref).toBe('refs/heads/master')
|
|
||||||
expect(settings.commit).toBeFalsy()
|
|
||||||
})
|
|
||||||
|
|
||||||
it('sets ref to empty when explicit sha', () => {
|
it('sets ref to empty when explicit sha', () => {
|
||||||
inputs.ref = '1111111111222222222233333333334444444444'
|
inputs.ref = '1111111111222222222233333333334444444444'
|
||||||
const settings: ISourceSettings = inputHelper.getInputs()
|
const settings: IGitSourceSettings = inputHelper.getInputs()
|
||||||
expect(settings.ref).toBeFalsy()
|
expect(settings.ref).toBeFalsy()
|
||||||
expect(settings.commit).toBe('1111111111222222222233333333334444444444')
|
expect(settings.commit).toBe('1111111111222222222233333333334444444444')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('sets sha to empty when explicit ref', () => {
|
it('sets sha to empty when explicit ref', () => {
|
||||||
inputs.ref = 'refs/heads/some-other-ref'
|
inputs.ref = 'refs/heads/some-other-ref'
|
||||||
const settings: ISourceSettings = inputHelper.getInputs()
|
const settings: IGitSourceSettings = inputHelper.getInputs()
|
||||||
expect(settings.ref).toBe('refs/heads/some-other-ref')
|
expect(settings.ref).toBe('refs/heads/some-other-ref')
|
||||||
expect(settings.commit).toBeFalsy()
|
expect(settings.commit).toBeFalsy()
|
||||||
})
|
})
|
||||||
|
|
||||||
it('gives good error message for submodules input', () => {
|
|
||||||
inputs.submodules = 'true'
|
|
||||||
assert.throws(() => {
|
|
||||||
inputHelper.getInputs()
|
|
||||||
}, /The input 'submodules' is not supported/)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
6
__test__/override-git-version.cmd
Executable file
6
__test__/override-git-version.cmd
Executable file
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
mkdir override-git-version
|
||||||
|
cd override-git-version
|
||||||
|
echo @echo override git version 1.2.3 > git.cmd
|
||||||
|
echo ::add-path::%CD%
|
||||||
|
cd ..
|
||||||
9
__test__/override-git-version.sh
Executable file
9
__test__/override-git-version.sh
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
mkdir override-git-version
|
||||||
|
cd override-git-version
|
||||||
|
echo "#!/bin/sh" > git
|
||||||
|
echo "echo override git version 1.2.3" >> git
|
||||||
|
chmod +x git
|
||||||
|
echo "::add-path::$(pwd)"
|
||||||
|
cd ..
|
||||||
87
__test__/retry-helper.test.ts
Normal file
87
__test__/retry-helper.test.ts
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
import * as core from '@actions/core'
|
||||||
|
import {RetryHelper} from '../lib/retry-helper'
|
||||||
|
|
||||||
|
let info: string[]
|
||||||
|
let retryHelper: any
|
||||||
|
|
||||||
|
describe('retry-helper tests', () => {
|
||||||
|
beforeAll(() => {
|
||||||
|
// Mock @actions/core info()
|
||||||
|
jest.spyOn(core, 'info').mockImplementation((message: string) => {
|
||||||
|
info.push(message)
|
||||||
|
})
|
||||||
|
|
||||||
|
retryHelper = new RetryHelper(3, 0, 0)
|
||||||
|
})
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
// Reset info
|
||||||
|
info = []
|
||||||
|
})
|
||||||
|
|
||||||
|
afterAll(() => {
|
||||||
|
// Restore
|
||||||
|
jest.restoreAllMocks()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('first attempt succeeds', async () => {
|
||||||
|
const actual = await retryHelper.execute(async () => {
|
||||||
|
return 'some result'
|
||||||
|
})
|
||||||
|
expect(actual).toBe('some result')
|
||||||
|
expect(info).toHaveLength(0)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('second attempt succeeds', async () => {
|
||||||
|
let attempts = 0
|
||||||
|
const actual = await retryHelper.execute(() => {
|
||||||
|
if (++attempts == 1) {
|
||||||
|
throw new Error('some error')
|
||||||
|
}
|
||||||
|
|
||||||
|
return Promise.resolve('some result')
|
||||||
|
})
|
||||||
|
expect(attempts).toBe(2)
|
||||||
|
expect(actual).toBe('some result')
|
||||||
|
expect(info).toHaveLength(2)
|
||||||
|
expect(info[0]).toBe('some error')
|
||||||
|
expect(info[1]).toMatch(/Waiting .+ seconds before trying again/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('third attempt succeeds', async () => {
|
||||||
|
let attempts = 0
|
||||||
|
const actual = await retryHelper.execute(() => {
|
||||||
|
if (++attempts < 3) {
|
||||||
|
throw new Error(`some error ${attempts}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
return Promise.resolve('some result')
|
||||||
|
})
|
||||||
|
expect(attempts).toBe(3)
|
||||||
|
expect(actual).toBe('some result')
|
||||||
|
expect(info).toHaveLength(4)
|
||||||
|
expect(info[0]).toBe('some error 1')
|
||||||
|
expect(info[1]).toMatch(/Waiting .+ seconds before trying again/)
|
||||||
|
expect(info[2]).toBe('some error 2')
|
||||||
|
expect(info[3]).toMatch(/Waiting .+ seconds before trying again/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('all attempts fail succeeds', async () => {
|
||||||
|
let attempts = 0
|
||||||
|
let error: Error = (null as unknown) as Error
|
||||||
|
try {
|
||||||
|
await retryHelper.execute(() => {
|
||||||
|
throw new Error(`some error ${++attempts}`)
|
||||||
|
})
|
||||||
|
} catch (err) {
|
||||||
|
error = err
|
||||||
|
}
|
||||||
|
expect(error.message).toBe('some error 3')
|
||||||
|
expect(attempts).toBe(3)
|
||||||
|
expect(info).toHaveLength(4)
|
||||||
|
expect(info[0]).toBe('some error 1')
|
||||||
|
expect(info[1]).toMatch(/Waiting .+ seconds before trying again/)
|
||||||
|
expect(info[2]).toBe('some error 2')
|
||||||
|
expect(info[3]).toMatch(/Waiting .+ seconds before trying again/)
|
||||||
|
})
|
||||||
|
})
|
||||||
@@ -1,10 +1,24 @@
|
|||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
|
||||||
if [ ! -f "./basic/basic-file.txt" ]; then
|
if [ ! -f "./basic/basic-file.txt" ]; then
|
||||||
echo "Expected basic file does not exist"
|
echo "Expected basic file does not exist"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Verify auth token
|
if [ "$1" = "--archive" ]; then
|
||||||
cd basic
|
# Verify no .git folder
|
||||||
git fetch
|
if [ -d "./basic/.git" ]; then
|
||||||
|
echo "Did not expect ./basic/.git folder to exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
# Verify .git folder
|
||||||
|
if [ ! -d "./basic/.git" ]; then
|
||||||
|
echo "Expected ./basic/.git folder to exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Verify auth token
|
||||||
|
cd basic
|
||||||
|
git fetch --no-tags --depth=1 origin +refs/heads/main:refs/remotes/origin/main
|
||||||
|
fi
|
||||||
|
|||||||
@@ -12,6 +12,6 @@ if [[ "$(git status --porcelain)" != "" ]]; then
|
|||||||
echo ----------------------------------------
|
echo ----------------------------------------
|
||||||
echo Troubleshooting
|
echo Troubleshooting
|
||||||
echo ----------------------------------------
|
echo ----------------------------------------
|
||||||
echo "::error::Unstaged changes detected. Locally try running: git clean -ffdx && npm ci && npm run all"
|
echo "::error::Unstaged changes detected. Locally try running: git clean -ffdx && npm ci && npm run format && npm run build"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
11
__test__/verify-submodules-false.sh
Executable file
11
__test__/verify-submodules-false.sh
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ ! -f "./submodules-false/regular-file.txt" ]; then
|
||||||
|
echo "Expected regular file does not exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "./submodules-false/submodule-level-1/submodule-file.txt" ]; then
|
||||||
|
echo "Unexpected submodule file exists"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ ! -f "./submodules-not-checked-out/regular-file.txt" ]; then
|
|
||||||
echo "Expected regular file does not exist"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f "./submodules-not-checked-out/submodule-level-1/submodule-file.txt" ]; then
|
|
||||||
echo "Unexpected submodule file exists"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
26
__test__/verify-submodules-recursive.sh
Executable file
26
__test__/verify-submodules-recursive.sh
Executable file
@@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ ! -f "./submodules-recursive/regular-file.txt" ]; then
|
||||||
|
echo "Expected regular file does not exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "./submodules-recursive/submodule-level-1/submodule-file.txt" ]; then
|
||||||
|
echo "Expected submodule file does not exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "./submodules-recursive/submodule-level-1/submodule-level-2/nested-submodule-file.txt" ]; then
|
||||||
|
echo "Expected nested submodule file does not exists"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Testing persisted credential"
|
||||||
|
pushd ./submodules-recursive/submodule-level-1/submodule-level-2
|
||||||
|
git config --local --name-only --get-regexp http.+extraheader && git fetch
|
||||||
|
if [ "$?" != "0" ]; then
|
||||||
|
echo "Failed to validate persisted credential"
|
||||||
|
popd
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
popd
|
||||||
26
__test__/verify-submodules-true.sh
Executable file
26
__test__/verify-submodules-true.sh
Executable file
@@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ ! -f "./submodules-true/regular-file.txt" ]; then
|
||||||
|
echo "Expected regular file does not exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "./submodules-true/submodule-level-1/submodule-file.txt" ]; then
|
||||||
|
echo "Expected submodule file does not exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "./submodules-true/submodule-level-1/submodule-level-2/nested-submodule-file.txt" ]; then
|
||||||
|
echo "Unexpected nested submodule file exists"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Testing persisted credential"
|
||||||
|
pushd ./submodules-true/submodule-level-1
|
||||||
|
git config --local --name-only --get-regexp http.+extraheader && git fetch
|
||||||
|
if [ "$?" != "0" ]; then
|
||||||
|
echo "Failed to validate persisted credential"
|
||||||
|
popd
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
popd
|
||||||
56
action.yml
56
action.yml
@@ -1,27 +1,73 @@
|
|||||||
name: 'Checkout'
|
name: 'Checkout'
|
||||||
description: 'Checkout a Git repository'
|
description: 'Checkout a Git repository at a particular version'
|
||||||
inputs:
|
inputs:
|
||||||
repository:
|
repository:
|
||||||
description: 'Repository name with owner. For example, actions/checkout'
|
description: 'Repository name with owner. For example, actions/checkout'
|
||||||
default: ${{ github.repository }}
|
default: ${{ github.repository }}
|
||||||
ref:
|
ref:
|
||||||
description: >
|
description: >
|
||||||
Ref to checkout (SHA, branch, tag). For the repository that triggered the
|
The branch, tag or SHA to checkout. When checking out the repository that
|
||||||
workflow, defaults to the ref/SHA for the event. Otherwise defaults to master.
|
triggered a workflow, this defaults to the reference or SHA for that
|
||||||
|
event. Otherwise, uses the default branch.
|
||||||
token:
|
token:
|
||||||
description: 'Access token for clone repository'
|
description: >
|
||||||
|
Personal access token (PAT) used to fetch the repository. The PAT is configured
|
||||||
|
with the local git config, which enables your scripts to run authenticated git
|
||||||
|
commands. The post-job step removes the PAT.
|
||||||
|
|
||||||
|
|
||||||
|
We recommend using a service account with the least permissions necessary.
|
||||||
|
Also when generating a new PAT, select the least scopes necessary.
|
||||||
|
|
||||||
|
|
||||||
|
[Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
|
||||||
default: ${{ github.token }}
|
default: ${{ github.token }}
|
||||||
|
ssh-key:
|
||||||
|
description: >
|
||||||
|
SSH key used to fetch the repository. The SSH key is configured with the local
|
||||||
|
git config, which enables your scripts to run authenticated git commands.
|
||||||
|
The post-job step removes the SSH key.
|
||||||
|
|
||||||
|
|
||||||
|
We recommend using a service account with the least permissions necessary.
|
||||||
|
|
||||||
|
|
||||||
|
[Learn more about creating and using
|
||||||
|
encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
|
||||||
|
ssh-known-hosts:
|
||||||
|
description: >
|
||||||
|
Known hosts in addition to the user and global host key database. The public
|
||||||
|
SSH keys for a host may be obtained using the utility `ssh-keyscan`. For example,
|
||||||
|
`ssh-keyscan github.com`. The public key for github.com is always implicitly added.
|
||||||
|
ssh-strict:
|
||||||
|
description: >
|
||||||
|
Whether to perform strict host key checking. When true, adds the options `StrictHostKeyChecking=yes`
|
||||||
|
and `CheckHostIP=no` to the SSH command line. Use the input `ssh-known-hosts` to
|
||||||
|
configure additional hosts.
|
||||||
|
default: true
|
||||||
|
persist-credentials:
|
||||||
|
description: 'Whether to configure the token or SSH key with the local git config'
|
||||||
|
default: true
|
||||||
path:
|
path:
|
||||||
description: 'Relative path under $GITHUB_WORKSPACE to place the repository'
|
description: 'Relative path under $GITHUB_WORKSPACE to place the repository'
|
||||||
clean:
|
clean:
|
||||||
description: 'Whether to execute `git clean -ffdx && git reset --hard HEAD` before fetching'
|
description: 'Whether to execute `git clean -ffdx && git reset --hard HEAD` before fetching'
|
||||||
default: true
|
default: true
|
||||||
fetch-depth:
|
fetch-depth:
|
||||||
description: 'Number of commits to fetch. 0 indicates all history.'
|
description: 'Number of commits to fetch. 0 indicates all history for all branches and tags.'
|
||||||
default: 1
|
default: 1
|
||||||
lfs:
|
lfs:
|
||||||
description: 'Whether to download Git-LFS files'
|
description: 'Whether to download Git-LFS files'
|
||||||
default: false
|
default: false
|
||||||
|
submodules:
|
||||||
|
description: >
|
||||||
|
Whether to checkout submodules: `true` to checkout submodules or `recursive` to
|
||||||
|
recursively checkout submodules.
|
||||||
|
|
||||||
|
|
||||||
|
When the `ssh-key` input is not provided, SSH URLs beginning with `git@github.com:` are
|
||||||
|
converted to HTTPS.
|
||||||
|
default: false
|
||||||
runs:
|
runs:
|
||||||
using: node12
|
using: node12
|
||||||
main: dist/index.js
|
main: dist/index.js
|
||||||
|
|||||||
290
adrs/0153-checkout-v2.md
Normal file
290
adrs/0153-checkout-v2.md
Normal file
@@ -0,0 +1,290 @@
|
|||||||
|
# ADR 0153: Checkout v2
|
||||||
|
|
||||||
|
**Date**: 2019-10-21
|
||||||
|
|
||||||
|
**Status**: Accepted
|
||||||
|
|
||||||
|
## Context
|
||||||
|
|
||||||
|
This ADR details the behavior for `actions/checkout@v2`.
|
||||||
|
|
||||||
|
The new action will be written in typescript. We are moving away from runner-plugin actions.
|
||||||
|
|
||||||
|
We want to take this opportunity to make behavioral changes, from v1. This document is scoped to those differences.
|
||||||
|
|
||||||
|
## Decision
|
||||||
|
|
||||||
|
### Inputs
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
repository:
|
||||||
|
description: 'Repository name with owner. For example, actions/checkout'
|
||||||
|
default: ${{ github.repository }}
|
||||||
|
ref:
|
||||||
|
description: >
|
||||||
|
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.
|
||||||
|
token:
|
||||||
|
description: >
|
||||||
|
Personal access token (PAT) used to fetch the repository. The PAT is configured
|
||||||
|
with the local git config, which enables your scripts to run authenticated git
|
||||||
|
commands. The post-job step removes the PAT.
|
||||||
|
|
||||||
|
|
||||||
|
We recommend using a service account with the least permissions necessary.
|
||||||
|
Also when generating a new PAT, select the least scopes necessary.
|
||||||
|
|
||||||
|
|
||||||
|
[Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
|
||||||
|
default: ${{ github.token }}
|
||||||
|
ssh-key:
|
||||||
|
description: >
|
||||||
|
SSH key used to fetch the repository. The SSH key is configured with the local
|
||||||
|
git config, which enables your scripts to run authenticated git commands.
|
||||||
|
The post-job step removes the SSH key.
|
||||||
|
|
||||||
|
|
||||||
|
We recommend using a service account with the least permissions necessary.
|
||||||
|
|
||||||
|
|
||||||
|
[Learn more about creating and using
|
||||||
|
encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
|
||||||
|
ssh-known-hosts:
|
||||||
|
description: >
|
||||||
|
Known hosts in addition to the user and global host key database. The public
|
||||||
|
SSH keys for a host may be obtained using the utility `ssh-keyscan`. For example,
|
||||||
|
`ssh-keyscan github.com`. The public key for github.com is always implicitly added.
|
||||||
|
ssh-strict:
|
||||||
|
description: >
|
||||||
|
Whether to perform strict host key checking. When true, adds the options `StrictHostKeyChecking=yes`
|
||||||
|
and `CheckHostIP=no` to the SSH command line. Use the input `ssh-known-hosts` to
|
||||||
|
configure additional hosts.
|
||||||
|
default: true
|
||||||
|
persist-credentials:
|
||||||
|
description: 'Whether to configure the token or SSH key with the local git config'
|
||||||
|
default: true
|
||||||
|
path:
|
||||||
|
description: 'Relative path under $GITHUB_WORKSPACE to place the repository'
|
||||||
|
clean:
|
||||||
|
description: 'Whether to execute `git clean -ffdx && git reset --hard HEAD` before fetching'
|
||||||
|
default: true
|
||||||
|
fetch-depth:
|
||||||
|
description: 'Number of commits to fetch. 0 indicates all history for all tags and branches.'
|
||||||
|
default: 1
|
||||||
|
lfs:
|
||||||
|
description: 'Whether to download Git-LFS files'
|
||||||
|
default: false
|
||||||
|
submodules:
|
||||||
|
description: >
|
||||||
|
Whether to checkout submodules: `true` to checkout submodules or `recursive` to
|
||||||
|
recursively checkout submodules.
|
||||||
|
|
||||||
|
|
||||||
|
When the `ssh-key` input is not provided, SSH URLs beginning with `git@github.com:` are
|
||||||
|
converted to HTTPS.
|
||||||
|
default: false
|
||||||
|
```
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- SSH support is new
|
||||||
|
- `persist-credentials` is new
|
||||||
|
- `path` behavior is different (refer [below](#path) for details)
|
||||||
|
|
||||||
|
### Fallback to GitHub API
|
||||||
|
|
||||||
|
When a sufficient version of git is not in the PATH, fallback to the [web API](https://developer.github.com/v3/repos/contents/#get-archive-link) to download a tarball/zipball.
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- LFS files are not included in the archive. Therefore fail if LFS is set to true.
|
||||||
|
- Submodules are also not included in the archive.
|
||||||
|
|
||||||
|
### Persist credentials
|
||||||
|
|
||||||
|
The credentials will be persisted on disk. This will allow users to script authenticated git commands, like `git fetch`.
|
||||||
|
|
||||||
|
A post script will remove the credentials (cleanup for self-hosted).
|
||||||
|
|
||||||
|
Users may opt-out by specifying `persist-credentials: false`
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- Users scripting `git commit` may need to set the username and email. The service does not provide any reasonable default value. Users can add `git config user.name <NAME>` and `git config user.email <EMAIL>`. We will document this guidance.
|
||||||
|
|
||||||
|
#### PAT
|
||||||
|
|
||||||
|
When using the `${{github.token}}` or a PAT, the token will be persisted in the local git config. The config key `http.https://github.com/.extraheader` enables an auth header to be specified on all authenticated commands `AUTHORIZATION: basic <BASE64_U:P>`.
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- The auth header is scoped to all of github `http.https://github.com/.extraheader`
|
||||||
|
- Additional public remotes also just work.
|
||||||
|
- If users want to authenticate to an additional private remote, they should provide the `token` input.
|
||||||
|
|
||||||
|
#### SSH key
|
||||||
|
|
||||||
|
The SSH key will be written to disk under the `$RUNNER_TEMP` directory. The SSH key will
|
||||||
|
be removed by the action's post-job hook. Additionally, RUNNER_TEMP is cleared by the
|
||||||
|
runner between jobs.
|
||||||
|
|
||||||
|
The SSH key must be written with strict file permissions. The SSH client requires the file
|
||||||
|
to be read/write for the user, and not accessible by others.
|
||||||
|
|
||||||
|
The user host key database (`~/.ssh/known_hosts`) will be copied to a unique file under
|
||||||
|
`$RUNNER_TEMP`. And values from the input `ssh-known-hosts` will be added to the file.
|
||||||
|
|
||||||
|
The SSH command will be overridden for the local git config:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git config core.sshCommand 'ssh -i "$RUNNER_TEMP/path-to-ssh-key" -o StrictHostKeyChecking=yes -o CheckHostIP=no -o "UserKnownHostsFile=$RUNNER_TEMP/path-to-known-hosts"'
|
||||||
|
```
|
||||||
|
|
||||||
|
When the input `ssh-strict` is set to `false`, the options `CheckHostIP` and `StrictHostKeyChecking` will not be overridden.
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- When `ssh-strict` is set to `true` (default), the SSH option `CheckHostIP` can safely be disabled.
|
||||||
|
Strict host checking verifies the server's public key. Therefore, IP verification is unnecessary
|
||||||
|
and noisy. For example:
|
||||||
|
> Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts.
|
||||||
|
- Since GIT_SSH_COMMAND overrides core.sshCommand, temporarily set the env var when fetching the repo. When creds
|
||||||
|
are persisted, core.sshCommand is leveraged to avoid multiple checkout steps stomping over each other.
|
||||||
|
- Modify actions/runner to mount RUNNER_TEMP to enable scripting authenticated git commands from a container action.
|
||||||
|
- Refer [here](https://linux.die.net/man/5/ssh_config) for SSH config details.
|
||||||
|
|
||||||
|
### Fetch behavior
|
||||||
|
|
||||||
|
Fetch only the SHA being built and set depth=1. This significantly reduces the fetch time for large repos.
|
||||||
|
|
||||||
|
If a SHA isn't available (e.g. multi repo), then fetch only the specified ref with depth=1.
|
||||||
|
|
||||||
|
The input `fetch-depth` can be used to control the depth.
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- Fetching a single commit is supported by Git wire protocol version 2. The git client uses protocol version 0 by default. The desired protocol version can be overridden in the git config or on the fetch command line invocation (`-c protocol.version=2`). We will override on the fetch command line, for transparency.
|
||||||
|
- Git client version 2.18+ (released June 2018) is required for wire protocol version 2.
|
||||||
|
|
||||||
|
### Checkout behavior
|
||||||
|
|
||||||
|
For CI, checkout will create a local ref with the upstream set. This allows users to script git as they normally would.
|
||||||
|
|
||||||
|
For PR, continue to checkout detached head. The PR branch is special - the branch and merge commit are created by the server. It doesn't match a users' local workflow.
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- Consider deleting all local refs during cleanup if that helps avoid collisions. More testing required.
|
||||||
|
|
||||||
|
### Path
|
||||||
|
|
||||||
|
For the mainline scenario, the disk-layout behavior remains the same.
|
||||||
|
|
||||||
|
Remember, given the repo `johndoe/foo`, the mainline disk layout looks like:
|
||||||
|
|
||||||
|
```
|
||||||
|
GITHUB_WORKSPACE=/home/runner/work/foo/foo
|
||||||
|
RUNNER_WORKSPACE=/home/runner/work/foo
|
||||||
|
```
|
||||||
|
|
||||||
|
V2 introduces a new contraint on the checkout path. The location must now be under `github.workspace`. Whereas the checkout@v1 constraint was one level up, under `runner.workspace`.
|
||||||
|
|
||||||
|
V2 no longer changes `github.workspace` to follow wherever the self repo is checked-out.
|
||||||
|
|
||||||
|
These behavioral changes align better with container actions. The [documented filesystem contract](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#docker-container-filesystem) is:
|
||||||
|
|
||||||
|
- `/github/home`
|
||||||
|
- `/github/workspace` - Note: GitHub Actions must be run by the default Docker user (root). Ensure your Dockerfile does not set the USER instruction, otherwise you will not be able to access `GITHUB_WORKSPACE`.
|
||||||
|
- `/github/workflow`
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- The tracking config will not be updated to reflect the path of the workflow repo.
|
||||||
|
- Any existing workflow repo will not be moved when the checkout path changes. In fact some customers want to checkout the workflow repo twice, side by side against different branches.
|
||||||
|
- Actions that need to operate only against the root of the self repo, should expose a `path` input.
|
||||||
|
|
||||||
|
#### Default value for `path` input
|
||||||
|
|
||||||
|
The `path` input will default to `./` which is rooted against `github.workspace`.
|
||||||
|
|
||||||
|
This default fits the mainline scenario well: single checkout
|
||||||
|
|
||||||
|
For multi-checkout, users must specify the `path` input for at least one of the repositories.
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- An alternative is for the self repo to default to `./` and other repos default to `<REPO_NAME>`. However nested layout is an atypical git layout and therefore is not a good default. Users should supply the path info.
|
||||||
|
|
||||||
|
#### Example - Nested layout
|
||||||
|
|
||||||
|
The following example checks-out two repositories and creates a nested layout.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Self repo - Checkout to $GITHUB_WORKSPACE
|
||||||
|
- uses: checkout@v2
|
||||||
|
|
||||||
|
# Other repo - Checkout to $GITHUB_WORKSPACE/myscripts
|
||||||
|
- uses: checkout@v2
|
||||||
|
with:
|
||||||
|
repository: myorg/myscripts
|
||||||
|
path: myscripts
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Example - Side by side layout
|
||||||
|
|
||||||
|
The following example checks-out two repositories and creates a side-by-side layout.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Self repo - Checkout to $GITHUB_WORKSPACE/foo
|
||||||
|
- uses: checkout@v2
|
||||||
|
with:
|
||||||
|
path: foo
|
||||||
|
|
||||||
|
# Other repo - Checkout to $GITHUB_WORKSPACE/myscripts
|
||||||
|
- uses: checkout@v2
|
||||||
|
with:
|
||||||
|
repository: myorg/myscripts
|
||||||
|
path: myscripts
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Path impact to problem matchers
|
||||||
|
|
||||||
|
Problem matchers associate the source files with annotations.
|
||||||
|
|
||||||
|
Today the runner verifies the source file is under the `github.workspace`. Otherwise the source file property is dropped.
|
||||||
|
|
||||||
|
Multi-checkout complicates the matter. However even today submodules may cause this heuristic to be inaccurate.
|
||||||
|
|
||||||
|
A better solution is:
|
||||||
|
|
||||||
|
Given a source file path, walk up the directories until the first `.git/config` is found. Check if it matches the self repo (`url = https://github.com/OWNER/REPO`). If not, drop the source file path.
|
||||||
|
|
||||||
|
### Submodules
|
||||||
|
|
||||||
|
With both PAT and SSH key support, we should be able to provide frictionless support for
|
||||||
|
submodules scenarios: recursive, non-recursive, relative submodule paths.
|
||||||
|
|
||||||
|
When fetching submodules, follow the `fetch-depth` settings.
|
||||||
|
|
||||||
|
Also when fetching submodules, if the `ssh-key` input is not provided then convert SSH URLs to HTTPS: `-c url."https://github.com/".insteadOf "git@github.com:"`
|
||||||
|
|
||||||
|
Credentials will be persisted in the submodules local git config too.
|
||||||
|
|
||||||
|
### Port to typescript
|
||||||
|
|
||||||
|
The checkout action should be a typescript action on the GitHub graph, for the following reasons:
|
||||||
|
- Enables customers to fork the checkout repo and modify
|
||||||
|
- Serves as an example for customers
|
||||||
|
- Demystifies the checkout action manifest
|
||||||
|
- Simplifies the runner
|
||||||
|
- Reduce the amount of runner code to port (if we ever do)
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- This means job-container images will need git in the PATH, for checkout.
|
||||||
|
|
||||||
|
### Branching strategy and release tags
|
||||||
|
|
||||||
|
- Create a servicing branch for V1: `releases/v1`
|
||||||
|
- Merge the changes into the default branch
|
||||||
|
- Release using a new tag `preview`
|
||||||
|
- When stable, release using a new tag `v2`
|
||||||
|
|
||||||
|
## Consequences
|
||||||
|
|
||||||
|
- Update the checkout action and readme
|
||||||
|
- Update samples to consume `actions/checkout@v2`
|
||||||
|
- Job containers now require git in the PATH for checkout, otherwise fallback to REST API
|
||||||
|
- Minimum git version 2.18
|
||||||
|
- Update problem matcher logic regarding source file verification (runner)
|
||||||
37352
dist/index.js
vendored
37352
dist/index.js
vendored
File diff suppressed because one or more lines are too long
1328
dist/licenses.txt
vendored
Normal file
1328
dist/licenses.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
220
package-lock.json
generated
220
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
@@ -1,17 +1,14 @@
|
|||||||
{
|
{
|
||||||
"name": "checkout",
|
"name": "checkout",
|
||||||
"version": "2.0.0",
|
"version": "2.0.2",
|
||||||
"description": "checkout action",
|
"description": "checkout action",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc && ncc build && node lib/misc/generate-docs.js",
|
||||||
"format": "prettier --write **/*.ts",
|
"format": "prettier --write '**/*.ts'",
|
||||||
"format-check": "prettier --check **/*.ts",
|
"format-check": "prettier --check '**/*.ts'",
|
||||||
"lint": "eslint src/**/*.ts",
|
"lint": "eslint src/**/*.ts",
|
||||||
"pack": "ncc build",
|
"test": "jest"
|
||||||
"gendocs": "node lib/misc/generate-docs.js",
|
|
||||||
"test": "jest",
|
|
||||||
"all": "npm run build && npm run format && npm run lint && npm run pack && npm run gendocs && npm test"
|
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -31,14 +28,17 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.1.3",
|
"@actions/core": "^1.1.3",
|
||||||
"@actions/exec": "^1.0.1",
|
"@actions/exec": "^1.0.1",
|
||||||
"@actions/github": "^1.1.0",
|
"@actions/github": "^2.2.0",
|
||||||
"@actions/io": "^1.0.1"
|
"@actions/io": "^1.0.1",
|
||||||
|
"@actions/tool-cache": "^1.1.2",
|
||||||
|
"uuid": "^3.3.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^24.0.23",
|
"@types/jest": "^24.0.23",
|
||||||
"@types/node": "^12.7.12",
|
"@types/node": "^12.7.12",
|
||||||
|
"@types/uuid": "^3.4.6",
|
||||||
"@typescript-eslint/parser": "^2.8.0",
|
"@typescript-eslint/parser": "^2.8.0",
|
||||||
"@zeit/ncc": "^0.20.5",
|
"@vercel/ncc": "^0.23.0",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"eslint-plugin-github": "^2.0.0",
|
"eslint-plugin-github": "^2.0.0",
|
||||||
"eslint-plugin-jest": "^22.21.0",
|
"eslint-plugin-jest": "^22.21.0",
|
||||||
|
|||||||
350
src/git-auth-helper.ts
Normal file
350
src/git-auth-helper.ts
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
117
src/git-directory-helper.ts
Normal file
117
src/git-directory-helper.ts
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
import * as assert from 'assert'
|
||||||
|
import * as core from '@actions/core'
|
||||||
|
import * as fs from 'fs'
|
||||||
|
import * as fsHelper from './fs-helper'
|
||||||
|
import * as io from '@actions/io'
|
||||||
|
import * as path from 'path'
|
||||||
|
import {IGitCommandManager} from './git-command-manager'
|
||||||
|
|
||||||
|
export async function prepareExistingDirectory(
|
||||||
|
git: IGitCommandManager | undefined,
|
||||||
|
repositoryPath: string,
|
||||||
|
repositoryUrl: string,
|
||||||
|
clean: boolean,
|
||||||
|
ref: string
|
||||||
|
): Promise<void> {
|
||||||
|
assert.ok(repositoryPath, 'Expected repositoryPath to be defined')
|
||||||
|
assert.ok(repositoryUrl, 'Expected repositoryUrl to be defined')
|
||||||
|
|
||||||
|
// Indicates whether to delete the directory contents
|
||||||
|
let remove = false
|
||||||
|
|
||||||
|
// Check whether using git or REST API
|
||||||
|
if (!git) {
|
||||||
|
remove = true
|
||||||
|
}
|
||||||
|
// Fetch URL does not match
|
||||||
|
else if (
|
||||||
|
!fsHelper.directoryExistsSync(path.join(repositoryPath, '.git')) ||
|
||||||
|
repositoryUrl !== (await git.tryGetFetchUrl())
|
||||||
|
) {
|
||||||
|
remove = true
|
||||||
|
} else {
|
||||||
|
// Delete any index.lock and shallow.lock left by a previously canceled run or crashed git process
|
||||||
|
const lockPaths = [
|
||||||
|
path.join(repositoryPath, '.git', 'index.lock'),
|
||||||
|
path.join(repositoryPath, '.git', 'shallow.lock')
|
||||||
|
]
|
||||||
|
for (const lockPath of lockPaths) {
|
||||||
|
try {
|
||||||
|
await io.rmRF(lockPath)
|
||||||
|
} catch (error) {
|
||||||
|
core.debug(`Unable to delete '${lockPath}'. ${error.message}`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
core.startGroup('Removing previously created refs, to avoid conflicts')
|
||||||
|
// Checkout detached HEAD
|
||||||
|
if (!(await git.isDetached())) {
|
||||||
|
await git.checkoutDetach()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove all refs/heads/*
|
||||||
|
let branches = await git.branchList(false)
|
||||||
|
for (const branch of branches) {
|
||||||
|
await git.branchDelete(false, branch)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove any conflicting refs/remotes/origin/*
|
||||||
|
// Example 1: Consider ref is refs/heads/foo and previously fetched refs/remotes/origin/foo/bar
|
||||||
|
// Example 2: Consider ref is refs/heads/foo/bar and previously fetched refs/remotes/origin/foo
|
||||||
|
if (ref) {
|
||||||
|
ref = ref.startsWith('refs/') ? ref : `refs/heads/${ref}`
|
||||||
|
if (ref.startsWith('refs/heads/')) {
|
||||||
|
const upperName1 = ref.toUpperCase().substr('REFS/HEADS/'.length)
|
||||||
|
const upperName1Slash = `${upperName1}/`
|
||||||
|
branches = await git.branchList(true)
|
||||||
|
for (const branch of branches) {
|
||||||
|
const upperName2 = branch.substr('origin/'.length).toUpperCase()
|
||||||
|
const upperName2Slash = `${upperName2}/`
|
||||||
|
if (
|
||||||
|
upperName1.startsWith(upperName2Slash) ||
|
||||||
|
upperName2.startsWith(upperName1Slash)
|
||||||
|
) {
|
||||||
|
await git.branchDelete(true, branch)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
|
// Clean
|
||||||
|
if (clean) {
|
||||||
|
core.startGroup('Cleaning the repository')
|
||||||
|
if (!(await git.tryClean())) {
|
||||||
|
core.debug(
|
||||||
|
`The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For futher investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`
|
||||||
|
)
|
||||||
|
remove = true
|
||||||
|
} else if (!(await git.tryReset())) {
|
||||||
|
remove = true
|
||||||
|
}
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
|
if (remove) {
|
||||||
|
core.warning(
|
||||||
|
`Unable to clean or reset the repository. The repository will be recreated instead.`
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
core.warning(
|
||||||
|
`Unable to prepare the existing repository. The repository will be recreated instead.`
|
||||||
|
)
|
||||||
|
remove = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (remove) {
|
||||||
|
// Delete the contents of the directory. Don't delete the directory itself
|
||||||
|
// since it might be the current working directory.
|
||||||
|
core.info(`Deleting the contents of '${repositoryPath}'`)
|
||||||
|
for (const file of await fs.promises.readdir(repositoryPath)) {
|
||||||
|
await io.rmRF(path.join(repositoryPath, file))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
76
src/git-source-settings.ts
Normal file
76
src/git-source-settings.ts
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
export interface IGitSourceSettings {
|
||||||
|
/**
|
||||||
|
* The location on disk where the repository will be placed
|
||||||
|
*/
|
||||||
|
repositoryPath: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The repository owner
|
||||||
|
*/
|
||||||
|
repositoryOwner: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The repository name
|
||||||
|
*/
|
||||||
|
repositoryName: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The ref to fetch
|
||||||
|
*/
|
||||||
|
ref: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The commit to checkout
|
||||||
|
*/
|
||||||
|
commit: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether to clean the repository
|
||||||
|
*/
|
||||||
|
clean: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The depth when fetching
|
||||||
|
*/
|
||||||
|
fetchDepth: number
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether to fetch LFS objects
|
||||||
|
*/
|
||||||
|
lfs: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether to checkout submodules
|
||||||
|
*/
|
||||||
|
submodules: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether to recursively checkout submodules
|
||||||
|
*/
|
||||||
|
nestedSubmodules: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The auth token to use when fetching the repository
|
||||||
|
*/
|
||||||
|
authToken: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The SSH key to configure
|
||||||
|
*/
|
||||||
|
sshKey: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Additional SSH known hosts
|
||||||
|
*/
|
||||||
|
sshKnownHosts: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether the server must be a known host
|
||||||
|
*/
|
||||||
|
sshStrict: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether to persist the credentials on disk to enable scripting authenticated git commands
|
||||||
|
*/
|
||||||
|
persistCredentials: boolean
|
||||||
|
}
|
||||||
138
src/github-api-helper.ts
Normal file
138
src/github-api-helper.ts
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
import * as assert from 'assert'
|
||||||
|
import * as core from '@actions/core'
|
||||||
|
import * as fs from 'fs'
|
||||||
|
import * as github from '@actions/github'
|
||||||
|
import * as io from '@actions/io'
|
||||||
|
import * as path from 'path'
|
||||||
|
import * as retryHelper from './retry-helper'
|
||||||
|
import * as toolCache from '@actions/tool-cache'
|
||||||
|
import {default as uuid} from 'uuid/v4'
|
||||||
|
import {Octokit} from '@octokit/rest'
|
||||||
|
|
||||||
|
const IS_WINDOWS = process.platform === 'win32'
|
||||||
|
|
||||||
|
export async function downloadRepository(
|
||||||
|
authToken: string,
|
||||||
|
owner: string,
|
||||||
|
repo: string,
|
||||||
|
ref: string,
|
||||||
|
commit: string,
|
||||||
|
repositoryPath: string
|
||||||
|
): Promise<void> {
|
||||||
|
// Determine the default branch
|
||||||
|
if (!ref && !commit) {
|
||||||
|
core.info('Determining the default branch')
|
||||||
|
ref = await getDefaultBranch(authToken, owner, repo)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Download the archive
|
||||||
|
let archiveData = await retryHelper.execute(async () => {
|
||||||
|
core.info('Downloading the archive')
|
||||||
|
return await downloadArchive(authToken, owner, repo, ref, commit)
|
||||||
|
})
|
||||||
|
|
||||||
|
// Write archive to disk
|
||||||
|
core.info('Writing archive to disk')
|
||||||
|
const uniqueId = uuid()
|
||||||
|
const archivePath = path.join(repositoryPath, `${uniqueId}.tar.gz`)
|
||||||
|
await fs.promises.writeFile(archivePath, archiveData)
|
||||||
|
archiveData = Buffer.from('') // Free memory
|
||||||
|
|
||||||
|
// Extract archive
|
||||||
|
core.info('Extracting the archive')
|
||||||
|
const extractPath = path.join(repositoryPath, uniqueId)
|
||||||
|
await io.mkdirP(extractPath)
|
||||||
|
if (IS_WINDOWS) {
|
||||||
|
await toolCache.extractZip(archivePath, extractPath)
|
||||||
|
} else {
|
||||||
|
await toolCache.extractTar(archivePath, extractPath)
|
||||||
|
}
|
||||||
|
io.rmRF(archivePath)
|
||||||
|
|
||||||
|
// Determine the path of the repository content. The archive contains
|
||||||
|
// a top-level folder and the repository content is inside.
|
||||||
|
const archiveFileNames = await fs.promises.readdir(extractPath)
|
||||||
|
assert.ok(
|
||||||
|
archiveFileNames.length == 1,
|
||||||
|
'Expected exactly one directory inside archive'
|
||||||
|
)
|
||||||
|
const archiveVersion = archiveFileNames[0] // The top-level folder name includes the short SHA
|
||||||
|
core.info(`Resolved version ${archiveVersion}`)
|
||||||
|
const tempRepositoryPath = path.join(extractPath, archiveVersion)
|
||||||
|
|
||||||
|
// Move the files
|
||||||
|
for (const fileName of await fs.promises.readdir(tempRepositoryPath)) {
|
||||||
|
const sourcePath = path.join(tempRepositoryPath, fileName)
|
||||||
|
const targetPath = path.join(repositoryPath, fileName)
|
||||||
|
if (IS_WINDOWS) {
|
||||||
|
await io.cp(sourcePath, targetPath, {recursive: true}) // Copy on Windows (Windows Defender may have a lock)
|
||||||
|
} else {
|
||||||
|
await io.mv(sourcePath, targetPath)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
io.rmRF(extractPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Looks up the default branch name
|
||||||
|
*/
|
||||||
|
export async function getDefaultBranch(
|
||||||
|
authToken: string,
|
||||||
|
owner: string,
|
||||||
|
repo: string
|
||||||
|
): Promise<string> {
|
||||||
|
return await retryHelper.execute(async () => {
|
||||||
|
core.info('Retrieving the default branch name')
|
||||||
|
const octokit = new github.GitHub(authToken)
|
||||||
|
let result: string
|
||||||
|
try {
|
||||||
|
// Get the default branch from the repo info
|
||||||
|
const response = await octokit.repos.get({owner, repo})
|
||||||
|
result = response.data.default_branch
|
||||||
|
assert.ok(result, 'default_branch cannot be empty')
|
||||||
|
} catch (err) {
|
||||||
|
// Handle .wiki repo
|
||||||
|
if (err['status'] === 404 && repo.toUpperCase().endsWith('.WIKI')) {
|
||||||
|
result = 'master'
|
||||||
|
}
|
||||||
|
// Otherwise error
|
||||||
|
else {
|
||||||
|
throw err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Print the default branch
|
||||||
|
core.info(`Default branch '${result}'`)
|
||||||
|
|
||||||
|
// Prefix with 'refs/heads'
|
||||||
|
if (!result.startsWith('refs/')) {
|
||||||
|
result = `refs/heads/${result}`
|
||||||
|
}
|
||||||
|
|
||||||
|
return result
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
async function downloadArchive(
|
||||||
|
authToken: string,
|
||||||
|
owner: string,
|
||||||
|
repo: string,
|
||||||
|
ref: string,
|
||||||
|
commit: string
|
||||||
|
): Promise<Buffer> {
|
||||||
|
const octokit = new github.GitHub(authToken)
|
||||||
|
const params: Octokit.ReposGetArchiveLinkParams = {
|
||||||
|
owner: owner,
|
||||||
|
repo: repo,
|
||||||
|
archive_format: IS_WINDOWS ? 'zipball' : 'tarball',
|
||||||
|
ref: commit || ref
|
||||||
|
}
|
||||||
|
const response = await octokit.repos.getArchiveLink(params)
|
||||||
|
if (response.status != 200) {
|
||||||
|
throw new Error(
|
||||||
|
`Unexpected response from GitHub API. Status: ${response.status}, Data: ${response.data}`
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return Buffer.from(response.data) // response.data is ArrayBuffer
|
||||||
|
}
|
||||||
@@ -2,10 +2,10 @@ import * as core from '@actions/core'
|
|||||||
import * as fsHelper from './fs-helper'
|
import * as fsHelper from './fs-helper'
|
||||||
import * as github from '@actions/github'
|
import * as github from '@actions/github'
|
||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
import {ISourceSettings} from './git-source-provider'
|
import {IGitSourceSettings} from './git-source-settings'
|
||||||
|
|
||||||
export function getInputs(): ISourceSettings {
|
export function getInputs(): IGitSourceSettings {
|
||||||
const result = ({} as unknown) as ISourceSettings
|
const result = ({} as unknown) as IGitSourceSettings
|
||||||
|
|
||||||
// GitHub workspace
|
// GitHub workspace
|
||||||
let githubWorkspacePath = process.env['GITHUB_WORKSPACE']
|
let githubWorkspacePath = process.env['GITHUB_WORKSPACE']
|
||||||
@@ -61,10 +61,12 @@ export function getInputs(): ISourceSettings {
|
|||||||
if (isWorkflowRepository) {
|
if (isWorkflowRepository) {
|
||||||
result.ref = github.context.ref
|
result.ref = github.context.ref
|
||||||
result.commit = github.context.sha
|
result.commit = github.context.sha
|
||||||
}
|
|
||||||
|
|
||||||
if (!result.ref && !result.commit) {
|
// Some events have an unqualifed ref. For example when a PR is merged (pull_request closed event),
|
||||||
result.ref = 'refs/heads/master'
|
// the ref is unqualifed like "main" instead of "refs/heads/main".
|
||||||
|
if (result.commit && result.ref && !result.ref.startsWith('refs/')) {
|
||||||
|
result.ref = `refs/heads/${result.ref}`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// SHA?
|
// SHA?
|
||||||
@@ -79,13 +81,6 @@ export function getInputs(): ISourceSettings {
|
|||||||
result.clean = (core.getInput('clean') || 'true').toUpperCase() === 'TRUE'
|
result.clean = (core.getInput('clean') || 'true').toUpperCase() === 'TRUE'
|
||||||
core.debug(`clean = ${result.clean}`)
|
core.debug(`clean = ${result.clean}`)
|
||||||
|
|
||||||
// Submodules
|
|
||||||
if (core.getInput('submodules')) {
|
|
||||||
throw new Error(
|
|
||||||
"The input 'submodules' is not supported in actions/checkout@v2"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fetch depth
|
// Fetch depth
|
||||||
result.fetchDepth = Math.floor(Number(core.getInput('fetch-depth') || '1'))
|
result.fetchDepth = Math.floor(Number(core.getInput('fetch-depth') || '1'))
|
||||||
if (isNaN(result.fetchDepth) || result.fetchDepth < 0) {
|
if (isNaN(result.fetchDepth) || result.fetchDepth < 0) {
|
||||||
@@ -97,8 +92,31 @@ export function getInputs(): ISourceSettings {
|
|||||||
result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE'
|
result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE'
|
||||||
core.debug(`lfs = ${result.lfs}`)
|
core.debug(`lfs = ${result.lfs}`)
|
||||||
|
|
||||||
// Access token
|
// Submodules
|
||||||
result.accessToken = core.getInput('token')
|
result.submodules = false
|
||||||
|
result.nestedSubmodules = false
|
||||||
|
const submodulesString = (core.getInput('submodules') || '').toUpperCase()
|
||||||
|
if (submodulesString == 'RECURSIVE') {
|
||||||
|
result.submodules = true
|
||||||
|
result.nestedSubmodules = true
|
||||||
|
} else if (submodulesString == 'TRUE') {
|
||||||
|
result.submodules = true
|
||||||
|
}
|
||||||
|
core.debug(`submodules = ${result.submodules}`)
|
||||||
|
core.debug(`recursive submodules = ${result.nestedSubmodules}`)
|
||||||
|
|
||||||
|
// Auth token
|
||||||
|
result.authToken = core.getInput('token', {required: true})
|
||||||
|
|
||||||
|
// SSH
|
||||||
|
result.sshKey = core.getInput('ssh-key')
|
||||||
|
result.sshKnownHosts = core.getInput('ssh-known-hosts')
|
||||||
|
result.sshStrict =
|
||||||
|
(core.getInput('ssh-strict') || 'true').toUpperCase() === 'TRUE'
|
||||||
|
|
||||||
|
// Persist credentials
|
||||||
|
result.persistCredentials =
|
||||||
|
(core.getInput('persist-credentials') || 'false').toUpperCase() === 'TRUE'
|
||||||
|
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,7 @@ import * as coreCommand from '@actions/core/lib/command'
|
|||||||
import * as gitSourceProvider from './git-source-provider'
|
import * as gitSourceProvider from './git-source-provider'
|
||||||
import * as inputHelper from './input-helper'
|
import * as inputHelper from './input-helper'
|
||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
|
import * as stateHelper from './state-helper'
|
||||||
const cleanupRepositoryPath = process.env['STATE_repositoryPath'] as string
|
|
||||||
|
|
||||||
async function run(): Promise<void> {
|
async function run(): Promise<void> {
|
||||||
try {
|
try {
|
||||||
@@ -31,14 +30,14 @@ async function run(): Promise<void> {
|
|||||||
|
|
||||||
async function cleanup(): Promise<void> {
|
async function cleanup(): Promise<void> {
|
||||||
try {
|
try {
|
||||||
await gitSourceProvider.cleanup(cleanupRepositoryPath)
|
await gitSourceProvider.cleanup(stateHelper.RepositoryPath)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.warning(error.message)
|
core.warning(error.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Main
|
// Main
|
||||||
if (!cleanupRepositoryPath) {
|
if (!stateHelper.IsPost) {
|
||||||
run()
|
run()
|
||||||
}
|
}
|
||||||
// Post
|
// Post
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user