1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-07-16 21:07:54 +00:00

Addressing code review comments for PR #922

This commit is contained in:
Peter Murray 2022-09-20 07:41:19 +00:00 committed by GitHub
parent 092f9bd613
commit 0ff8af6944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 80 additions and 68 deletions

View file

@ -6,7 +6,7 @@ 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 {getOctokit, Octokit} from './octokit-helper'
import {getOctokit, Octokit} from './octokit-provider'
const IS_WINDOWS = process.platform === 'win32'

View file

@ -1,7 +1,7 @@
import {IGitCommandManager} from './git-command-manager'
import * as core from '@actions/core'
import * as github from '@actions/github'
import {getOctokit} from './octokit-helper'
import {getOctokit} from './octokit-provider'
import {isGhes} from './url-helper'
export const tagsRefSpec = '+refs/tags/*:refs/tags/*'