Skip to content

Commit

Permalink
Rename file-types to config-types
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurre Stender committed Aug 12, 2021
1 parent 287bf41 commit 153c81f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/container-service.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as core from '@actions/core'
import {Container} from 'dockerode'
import {pack} from 'tar-stream'
import {FileFetcherInput, FileUpdaterInput, ProxyConfig} from './file-types'
import {FileFetcherInput, FileUpdaterInput, ProxyConfig} from './config-types'
import {outStream, errStream} from './utils'

export const ContainerService = {
Expand Down
2 changes: 1 addition & 1 deletion src/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
BasicAuthCredentials,
CertificateAuthority,
ProxyConfig
} from './file-types'
} from './config-types'
import {ContainerService} from './container-service'
import {Credential, JobDetails} from './api-client'
import {pki} from 'node-forge'
Expand Down
2 changes: 1 addition & 1 deletion src/updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import fs from 'fs'
import {JobDetails, APIClient, Credential} from './api-client'
import {ContainerService} from './container-service'
import {base64DecodeDependencyFile} from './utils'
import {DependencyFile, FetchedFiles, FileUpdaterInput} from './file-types'
import {DependencyFile, FetchedFiles, FileUpdaterInput} from './config-types'
import {ProxyBuilder, Proxy} from './proxy'

const JOB_INPUT_FILENAME = 'job.json'
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import stream, {Writable} from 'stream'
import {DependencyFile} from './file-types'
import {DependencyFile} from './config-types'

const base64Decode = (str: string): string =>
Buffer.from(str, 'base64').toString('binary')
Expand Down

0 comments on commit 153c81f

Please sign in to comment.