mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 17:06:38 +07:00 
			
		
		
		
	Compare commits
	
		
			36 Commits
		
	
	
		
			v1.0.3
			...
			joshmgross
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 7527073910 | |||
| a631fadf14 | |||
| e223b0a12d | |||
| decbafc350 | |||
| 3854a40aee | |||
| 0188dffc5a | |||
| 002d3a77f4 | |||
| 4809f4ada4 | |||
| 3d01b4eb53 | |||
| 95c1798369 | |||
| 639f9d8b81 | |||
| d9fe1b81f9 | |||
| 92ae3b63f8 | |||
| 84b3b283f0 | |||
| 8d14a2150b | |||
| c0584c42d1 | |||
| bb828da54c | |||
| 7e7aef2963 | |||
| b7d83b4095 | |||
| 50a2fdee6f | |||
| f0cbadd748 | |||
| 4657a5f525 | |||
| fb50aa45ec | |||
| 31508256ff | |||
| bc821d0c12 | |||
| bde557aefd | |||
| 4b0709a0d5 | |||
| ecf6eea708 | |||
| eb10706a9d | |||
| 30524a6fbd | |||
| b034b26a44 | |||
| e1ed41a9c9 | |||
| 5f4d4d4555 | |||
| 5d3ad75a2b | |||
| d8c5e69fe2 | |||
| f66a56e59e | 
							
								
								
									
										27
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										27
									
								
								README.md
									
									
									
									
									
								
							@ -35,7 +35,7 @@ on: push
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
    steps:
 | 
			
		||||
    - uses: actions/checkout@v1
 | 
			
		||||
 | 
			
		||||
@ -49,14 +49,31 @@ jobs:
 | 
			
		||||
    - name: Generate Prime Numbers
 | 
			
		||||
      if: steps.cache-primes.outputs.cache-hit != 'true'
 | 
			
		||||
      run: /generate-primes.sh -d prime-numbers
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
    - name: Use Prime Numbers
 | 
			
		||||
      run: /primes.sh -d prime-numbers
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Ecosystem Examples
 | 
			
		||||
## Implementation Examples
 | 
			
		||||
 | 
			
		||||
Every programming language and framework has its own way of caching.
 | 
			
		||||
 | 
			
		||||
See [Examples](examples.md) for a list of `actions/cache` implementations for use with:
 | 
			
		||||
 | 
			
		||||
- [C# - Nuget](./examples.md#c---nuget)
 | 
			
		||||
- [Elixir - Mix](./examples.md#elixir---mix)
 | 
			
		||||
- [Go - Modules](./examples.md#go---modules)
 | 
			
		||||
- [Java - Gradle](./examples.md#java---gradle)
 | 
			
		||||
- [Java - Maven](./examples.md#java---maven)
 | 
			
		||||
- [Node - npm](./examples.md#node---npm)
 | 
			
		||||
- [Node - Yarn](./examples.md#node---yarn)
 | 
			
		||||
- [PHP - Composer](./examples.md#php---composer)
 | 
			
		||||
- [Python - pip](./examples.md#python---pip)
 | 
			
		||||
- [Ruby - Gem](./examples.md#ruby---gem)
 | 
			
		||||
- [Rust - Cargo](./examples.md#rust---cargo)
 | 
			
		||||
- [Swift, Objective-C - Carthage](./examples.md#swift-objective-c---carthage)
 | 
			
		||||
- [Swift, Objective-C - CocoaPods](./examples.md#swift-objective-c---cocoapods)
 | 
			
		||||
 | 
			
		||||
See [Examples](examples.md)
 | 
			
		||||
 | 
			
		||||
## Cache Limits
 | 
			
		||||
 | 
			
		||||
@ -76,7 +93,7 @@ steps:
 | 
			
		||||
    with:
 | 
			
		||||
      path: path/to/dependencies
 | 
			
		||||
      key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
 | 
			
		||||
  
 | 
			
		||||
 | 
			
		||||
  - name: Install Dependencies
 | 
			
		||||
    if: steps.cache.outputs.cache-hit != 'true'
 | 
			
		||||
    run: /install.sh
 | 
			
		||||
 | 
			
		||||
@ -1,18 +1,16 @@
 | 
			
		||||
import * as core from "@actions/core";
 | 
			
		||||
import * as exec from "@actions/exec";
 | 
			
		||||
import * as io from "@actions/io";
 | 
			
		||||
import * as path from "path";
 | 
			
		||||
import * as cacheHttpClient from "../src/cacheHttpClient";
 | 
			
		||||
import { Events, Inputs } from "../src/constants";
 | 
			
		||||
import { ArtifactCacheEntry } from "../src/contracts";
 | 
			
		||||
import run from "../src/restore";
 | 
			
		||||
import * as tar from "../src/tar";
 | 
			
		||||
import * as actionUtils from "../src/utils/actionUtils";
 | 
			
		||||
import * as testUtils from "../src/utils/testUtils";
 | 
			
		||||
 | 
			
		||||
jest.mock("@actions/exec");
 | 
			
		||||
jest.mock("@actions/io");
 | 
			
		||||
jest.mock("../src/utils/actionUtils");
 | 
			
		||||
jest.mock("../src/cacheHttpClient");
 | 
			
		||||
jest.mock("../src/tar");
 | 
			
		||||
jest.mock("../src/utils/actionUtils");
 | 
			
		||||
 | 
			
		||||
beforeAll(() => {
 | 
			
		||||
    jest.spyOn(actionUtils, "resolvePath").mockImplementation(filePath => {
 | 
			
		||||
@ -35,10 +33,6 @@ beforeAll(() => {
 | 
			
		||||
        const actualUtils = jest.requireActual("../src/utils/actionUtils");
 | 
			
		||||
        return actualUtils.getSupportedEvents();
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    jest.spyOn(io, "which").mockImplementation(tool => {
 | 
			
		||||
        return Promise.resolve(tool);
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
beforeEach(() => {
 | 
			
		||||
@ -245,8 +239,7 @@ test("restore with cache found", async () => {
 | 
			
		||||
        .spyOn(actionUtils, "getArchiveFileSize")
 | 
			
		||||
        .mockReturnValue(fileSize);
 | 
			
		||||
 | 
			
		||||
    const mkdirMock = jest.spyOn(io, "mkdirP");
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
    const extractTarMock = jest.spyOn(tar, "extractTar");
 | 
			
		||||
    const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
 | 
			
		||||
 | 
			
		||||
    await run();
 | 
			
		||||
@ -257,22 +250,9 @@ test("restore with cache found", async () => {
 | 
			
		||||
    expect(createTempDirectoryMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(downloadCacheMock).toHaveBeenCalledWith(cacheEntry, archivePath);
 | 
			
		||||
    expect(getArchiveFileSizeMock).toHaveBeenCalledWith(archivePath);
 | 
			
		||||
    expect(mkdirMock).toHaveBeenCalledWith(cachePath);
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    const args = IS_WINDOWS
 | 
			
		||||
        ? [
 | 
			
		||||
              "-xz",
 | 
			
		||||
              "--force-local",
 | 
			
		||||
              "-f",
 | 
			
		||||
              archivePath.replace(/\\/g, "/"),
 | 
			
		||||
              "-C",
 | 
			
		||||
              cachePath.replace(/\\/g, "/")
 | 
			
		||||
          ]
 | 
			
		||||
        : ["-xz", "-f", archivePath, "-C", cachePath];
 | 
			
		||||
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(execMock).toHaveBeenCalledWith(`"tar"`, args);
 | 
			
		||||
    expect(extractTarMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(extractTarMock).toHaveBeenCalledWith(archivePath, cachePath);
 | 
			
		||||
 | 
			
		||||
    expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(setCacheHitOutputMock).toHaveBeenCalledWith(true);
 | 
			
		||||
@ -323,8 +303,7 @@ test("restore with a pull request event and cache found", async () => {
 | 
			
		||||
        .spyOn(actionUtils, "getArchiveFileSize")
 | 
			
		||||
        .mockReturnValue(fileSize);
 | 
			
		||||
 | 
			
		||||
    const mkdirMock = jest.spyOn(io, "mkdirP");
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
    const extractTarMock = jest.spyOn(tar, "extractTar");
 | 
			
		||||
    const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
 | 
			
		||||
 | 
			
		||||
    await run();
 | 
			
		||||
@ -336,22 +315,9 @@ test("restore with a pull request event and cache found", async () => {
 | 
			
		||||
    expect(downloadCacheMock).toHaveBeenCalledWith(cacheEntry, archivePath);
 | 
			
		||||
    expect(getArchiveFileSizeMock).toHaveBeenCalledWith(archivePath);
 | 
			
		||||
    expect(infoMock).toHaveBeenCalledWith(`Cache Size: ~60 MB (62915000 B)`);
 | 
			
		||||
    expect(mkdirMock).toHaveBeenCalledWith(cachePath);
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    const args = IS_WINDOWS
 | 
			
		||||
        ? [
 | 
			
		||||
              "-xz",
 | 
			
		||||
              "--force-local",
 | 
			
		||||
              "-f",
 | 
			
		||||
              archivePath.replace(/\\/g, "/"),
 | 
			
		||||
              "-C",
 | 
			
		||||
              cachePath.replace(/\\/g, "/")
 | 
			
		||||
          ]
 | 
			
		||||
        : ["-xz", "-f", archivePath, "-C", cachePath];
 | 
			
		||||
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(execMock).toHaveBeenCalledWith(`"tar"`, args);
 | 
			
		||||
    expect(extractTarMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(extractTarMock).toHaveBeenCalledWith(archivePath, cachePath);
 | 
			
		||||
 | 
			
		||||
    expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(setCacheHitOutputMock).toHaveBeenCalledWith(true);
 | 
			
		||||
@ -402,8 +368,7 @@ test("restore with cache found for restore key", async () => {
 | 
			
		||||
        .spyOn(actionUtils, "getArchiveFileSize")
 | 
			
		||||
        .mockReturnValue(fileSize);
 | 
			
		||||
 | 
			
		||||
    const mkdirMock = jest.spyOn(io, "mkdirP");
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
    const extractTarMock = jest.spyOn(tar, "extractTar");
 | 
			
		||||
    const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
 | 
			
		||||
 | 
			
		||||
    await run();
 | 
			
		||||
@ -415,22 +380,9 @@ test("restore with cache found for restore key", async () => {
 | 
			
		||||
    expect(downloadCacheMock).toHaveBeenCalledWith(cacheEntry, archivePath);
 | 
			
		||||
    expect(getArchiveFileSizeMock).toHaveBeenCalledWith(archivePath);
 | 
			
		||||
    expect(infoMock).toHaveBeenCalledWith(`Cache Size: ~0 MB (142 B)`);
 | 
			
		||||
    expect(mkdirMock).toHaveBeenCalledWith(cachePath);
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    const args = IS_WINDOWS
 | 
			
		||||
        ? [
 | 
			
		||||
              "-xz",
 | 
			
		||||
              "--force-local",
 | 
			
		||||
              "-f",
 | 
			
		||||
              archivePath.replace(/\\/g, "/"),
 | 
			
		||||
              "-C",
 | 
			
		||||
              cachePath.replace(/\\/g, "/")
 | 
			
		||||
          ]
 | 
			
		||||
        : ["-xz", "-f", archivePath, "-C", cachePath];
 | 
			
		||||
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(execMock).toHaveBeenCalledWith(`"tar"`, args);
 | 
			
		||||
    expect(extractTarMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(extractTarMock).toHaveBeenCalledWith(archivePath, cachePath);
 | 
			
		||||
 | 
			
		||||
    expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(setCacheHitOutputMock).toHaveBeenCalledWith(false);
 | 
			
		||||
 | 
			
		||||
@ -1,19 +1,17 @@
 | 
			
		||||
import * as core from "@actions/core";
 | 
			
		||||
import * as exec from "@actions/exec";
 | 
			
		||||
import * as io from "@actions/io";
 | 
			
		||||
import * as path from "path";
 | 
			
		||||
import * as cacheHttpClient from "../src/cacheHttpClient";
 | 
			
		||||
import { Events, Inputs } from "../src/constants";
 | 
			
		||||
import { ArtifactCacheEntry } from "../src/contracts";
 | 
			
		||||
import run from "../src/save";
 | 
			
		||||
import * as tar from "../src/tar";
 | 
			
		||||
import * as actionUtils from "../src/utils/actionUtils";
 | 
			
		||||
import * as testUtils from "../src/utils/testUtils";
 | 
			
		||||
 | 
			
		||||
jest.mock("@actions/core");
 | 
			
		||||
jest.mock("@actions/exec");
 | 
			
		||||
jest.mock("@actions/io");
 | 
			
		||||
jest.mock("../src/utils/actionUtils");
 | 
			
		||||
jest.mock("../src/cacheHttpClient");
 | 
			
		||||
jest.mock("../src/tar");
 | 
			
		||||
jest.mock("../src/utils/actionUtils");
 | 
			
		||||
 | 
			
		||||
beforeAll(() => {
 | 
			
		||||
    jest.spyOn(core, "getInput").mockImplementation((name, options) => {
 | 
			
		||||
@ -49,10 +47,6 @@ beforeAll(() => {
 | 
			
		||||
    jest.spyOn(actionUtils, "createTempDirectory").mockImplementation(() => {
 | 
			
		||||
        return Promise.resolve("/foo/bar");
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    jest.spyOn(io, "which").mockImplementation(tool => {
 | 
			
		||||
        return Promise.resolve(tool);
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
beforeEach(() => {
 | 
			
		||||
@ -128,7 +122,7 @@ test("save with exact match returns early", async () => {
 | 
			
		||||
            return primaryKey;
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
    const createTarMock = jest.spyOn(tar, "createTar");
 | 
			
		||||
 | 
			
		||||
    await run();
 | 
			
		||||
 | 
			
		||||
@ -136,7 +130,7 @@ test("save with exact match returns early", async () => {
 | 
			
		||||
        `Cache hit occurred on the primary key ${primaryKey}, not saving cache.`
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(0);
 | 
			
		||||
    expect(createTarMock).toHaveBeenCalledTimes(0);
 | 
			
		||||
 | 
			
		||||
    expect(failedMock).toHaveBeenCalledTimes(0);
 | 
			
		||||
});
 | 
			
		||||
@ -198,7 +192,7 @@ test("save with large cache outputs warning", async () => {
 | 
			
		||||
    const cachePath = path.resolve(inputPath);
 | 
			
		||||
    testUtils.setInput(Inputs.Path, inputPath);
 | 
			
		||||
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
    const createTarMock = jest.spyOn(tar, "createTar");
 | 
			
		||||
 | 
			
		||||
    const cacheSize = 1024 * 1024 * 1024; //~1GB, over the 400MB limit
 | 
			
		||||
    jest.spyOn(actionUtils, "getArchiveFileSize").mockImplementationOnce(() => {
 | 
			
		||||
@ -209,21 +203,8 @@ test("save with large cache outputs warning", async () => {
 | 
			
		||||
 | 
			
		||||
    const archivePath = path.join("/foo/bar", "cache.tgz");
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    const args = IS_WINDOWS
 | 
			
		||||
        ? [
 | 
			
		||||
              "-cz",
 | 
			
		||||
              "--force-local",
 | 
			
		||||
              "-f",
 | 
			
		||||
              archivePath.replace(/\\/g, "/"),
 | 
			
		||||
              "-C",
 | 
			
		||||
              cachePath.replace(/\\/g, "/"),
 | 
			
		||||
              "."
 | 
			
		||||
          ]
 | 
			
		||||
        : ["-cz", "-f", archivePath, "-C", cachePath, "."];
 | 
			
		||||
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(execMock).toHaveBeenCalledWith(`"tar"`, args);
 | 
			
		||||
    expect(createTarMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(createTarMock).toHaveBeenCalledWith(archivePath, cachePath);
 | 
			
		||||
 | 
			
		||||
    expect(logWarningMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(logWarningMock).toHaveBeenCalledWith(
 | 
			
		||||
@ -259,7 +240,7 @@ test("save with server error outputs warning", async () => {
 | 
			
		||||
    const cachePath = path.resolve(inputPath);
 | 
			
		||||
    testUtils.setInput(Inputs.Path, inputPath);
 | 
			
		||||
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
    const createTarMock = jest.spyOn(tar, "createTar");
 | 
			
		||||
 | 
			
		||||
    const saveCacheMock = jest
 | 
			
		||||
        .spyOn(cacheHttpClient, "saveCache")
 | 
			
		||||
@ -271,21 +252,8 @@ test("save with server error outputs warning", async () => {
 | 
			
		||||
 | 
			
		||||
    const archivePath = path.join("/foo/bar", "cache.tgz");
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    const args = IS_WINDOWS
 | 
			
		||||
        ? [
 | 
			
		||||
              "-cz",
 | 
			
		||||
              "--force-local",
 | 
			
		||||
              "-f",
 | 
			
		||||
              archivePath.replace(/\\/g, "/"),
 | 
			
		||||
              "-C",
 | 
			
		||||
              cachePath.replace(/\\/g, "/"),
 | 
			
		||||
              "."
 | 
			
		||||
          ]
 | 
			
		||||
        : ["-cz", "-f", archivePath, "-C", cachePath, "."];
 | 
			
		||||
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(execMock).toHaveBeenCalledWith(`"tar"`, args);
 | 
			
		||||
    expect(createTarMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(createTarMock).toHaveBeenCalledWith(archivePath, cachePath);
 | 
			
		||||
 | 
			
		||||
    expect(saveCacheMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(saveCacheMock).toHaveBeenCalledWith(primaryKey, archivePath);
 | 
			
		||||
@ -321,29 +289,15 @@ test("save with valid inputs uploads a cache", async () => {
 | 
			
		||||
    const cachePath = path.resolve(inputPath);
 | 
			
		||||
    testUtils.setInput(Inputs.Path, inputPath);
 | 
			
		||||
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
 | 
			
		||||
    const createTarMock = jest.spyOn(tar, "createTar");
 | 
			
		||||
    const saveCacheMock = jest.spyOn(cacheHttpClient, "saveCache");
 | 
			
		||||
 | 
			
		||||
    await run();
 | 
			
		||||
 | 
			
		||||
    const archivePath = path.join("/foo/bar", "cache.tgz");
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    const args = IS_WINDOWS
 | 
			
		||||
        ? [
 | 
			
		||||
              "-cz",
 | 
			
		||||
              "--force-local",
 | 
			
		||||
              "-f",
 | 
			
		||||
              archivePath.replace(/\\/g, "/"),
 | 
			
		||||
              "-C",
 | 
			
		||||
              cachePath.replace(/\\/g, "/"),
 | 
			
		||||
              "."
 | 
			
		||||
          ]
 | 
			
		||||
        : ["-cz", "-f", archivePath, "-C", cachePath, "."];
 | 
			
		||||
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(execMock).toHaveBeenCalledWith(`"tar"`, args);
 | 
			
		||||
    expect(createTarMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(createTarMock).toHaveBeenCalledWith(archivePath, cachePath);
 | 
			
		||||
 | 
			
		||||
    expect(saveCacheMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(saveCacheMock).toHaveBeenCalledWith(primaryKey, archivePath);
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										58
									
								
								__tests__/tar.test.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										58
									
								
								__tests__/tar.test.ts
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,58 @@
 | 
			
		||||
import * as exec from "@actions/exec";
 | 
			
		||||
import * as io from "@actions/io";
 | 
			
		||||
import * as tar from "../src/tar";
 | 
			
		||||
 | 
			
		||||
jest.mock("@actions/exec");
 | 
			
		||||
jest.mock("@actions/io");
 | 
			
		||||
 | 
			
		||||
beforeAll(() => {
 | 
			
		||||
    jest.spyOn(io, "which").mockImplementation(tool => {
 | 
			
		||||
        return Promise.resolve(tool);
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
test("extract tar", async () => {
 | 
			
		||||
    const mkdirMock = jest.spyOn(io, "mkdirP");
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
 | 
			
		||||
    const archivePath = "cache.tar";
 | 
			
		||||
    const targetDirectory = "~/.npm/cache";
 | 
			
		||||
    await tar.extractTar(archivePath, targetDirectory);
 | 
			
		||||
 | 
			
		||||
    expect(mkdirMock).toHaveBeenCalledWith(targetDirectory);
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    const tarPath = IS_WINDOWS
 | 
			
		||||
        ? `${process.env["windir"]}\\System32\\tar.exe`
 | 
			
		||||
        : "tar";
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(execMock).toHaveBeenCalledWith(`"${tarPath}"`, [
 | 
			
		||||
        "-xz",
 | 
			
		||||
        "-f",
 | 
			
		||||
        archivePath,
 | 
			
		||||
        "-C",
 | 
			
		||||
        targetDirectory
 | 
			
		||||
    ]);
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
test("create tar", async () => {
 | 
			
		||||
    const execMock = jest.spyOn(exec, "exec");
 | 
			
		||||
 | 
			
		||||
    const archivePath = "cache.tar";
 | 
			
		||||
    const sourceDirectory = "~/.npm/cache";
 | 
			
		||||
    await tar.createTar(archivePath, sourceDirectory);
 | 
			
		||||
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    const tarPath = IS_WINDOWS
 | 
			
		||||
        ? `${process.env["windir"]}\\System32\\tar.exe`
 | 
			
		||||
        : "tar";
 | 
			
		||||
    expect(execMock).toHaveBeenCalledTimes(1);
 | 
			
		||||
    expect(execMock).toHaveBeenCalledWith(`"${tarPath}"`, [
 | 
			
		||||
        "-cz",
 | 
			
		||||
        "-f",
 | 
			
		||||
        archivePath,
 | 
			
		||||
        "-C",
 | 
			
		||||
        sourceDirectory,
 | 
			
		||||
        "."
 | 
			
		||||
    ]);
 | 
			
		||||
});
 | 
			
		||||
							
								
								
									
										97
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										97
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							@ -2991,11 +2991,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
 | 
			
		||||
};
 | 
			
		||||
Object.defineProperty(exports, "__esModule", { value: true });
 | 
			
		||||
const core = __importStar(__webpack_require__(470));
 | 
			
		||||
const exec_1 = __webpack_require__(986);
 | 
			
		||||
const io = __importStar(__webpack_require__(1));
 | 
			
		||||
const path = __importStar(__webpack_require__(622));
 | 
			
		||||
const cacheHttpClient = __importStar(__webpack_require__(154));
 | 
			
		||||
const constants_1 = __webpack_require__(694);
 | 
			
		||||
const tar_1 = __webpack_require__(943);
 | 
			
		||||
const utils = __importStar(__webpack_require__(443));
 | 
			
		||||
function run() {
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
@ -3047,24 +3046,7 @@ function run() {
 | 
			
		||||
                yield cacheHttpClient.downloadCache(cacheEntry, archivePath);
 | 
			
		||||
                const archiveFileSize = utils.getArchiveFileSize(archivePath);
 | 
			
		||||
                core.info(`Cache Size: ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B)`);
 | 
			
		||||
                // Create directory to extract tar into
 | 
			
		||||
                yield io.mkdirP(cachePath);
 | 
			
		||||
                // http://man7.org/linux/man-pages/man1/tar.1.html
 | 
			
		||||
                // tar [-options] <name of the tar archive> [files or directories which to add into archive]
 | 
			
		||||
                const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
                const args = IS_WINDOWS
 | 
			
		||||
                    ? [
 | 
			
		||||
                        "-xz",
 | 
			
		||||
                        "--force-local",
 | 
			
		||||
                        "-f",
 | 
			
		||||
                        archivePath.replace(/\\/g, "/"),
 | 
			
		||||
                        "-C",
 | 
			
		||||
                        cachePath.replace(/\\/g, "/")
 | 
			
		||||
                    ]
 | 
			
		||||
                    : ["-xz", "-f", archivePath, "-C", cachePath];
 | 
			
		||||
                const tarPath = yield io.which("tar", true);
 | 
			
		||||
                core.debug(`Tar Path: ${tarPath}`);
 | 
			
		||||
                yield exec_1.exec(`"${tarPath}"`, args);
 | 
			
		||||
                yield tar_1.extractTar(archivePath, cachePath);
 | 
			
		||||
                const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheEntry);
 | 
			
		||||
                utils.setCacheHitOutput(isExactKeyMatch);
 | 
			
		||||
                core.info(`Cache restored from key: ${cacheEntry && cacheEntry.cacheKey}`);
 | 
			
		||||
@ -5160,6 +5142,81 @@ var personalaccesstoken_1 = __webpack_require__(327);
 | 
			
		||||
exports.PersonalAccessTokenCredentialHandler = personalaccesstoken_1.PersonalAccessTokenCredentialHandler;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/***/ }),
 | 
			
		||||
 | 
			
		||||
/***/ 943:
 | 
			
		||||
/***/ (function(__unusedmodule, exports, __webpack_require__) {
 | 
			
		||||
 | 
			
		||||
"use strict";
 | 
			
		||||
 | 
			
		||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
 | 
			
		||||
    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
 | 
			
		||||
    return new (P || (P = Promise))(function (resolve, reject) {
 | 
			
		||||
        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
 | 
			
		||||
        function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
 | 
			
		||||
        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
 | 
			
		||||
        step((generator = generator.apply(thisArg, _arguments || [])).next());
 | 
			
		||||
    });
 | 
			
		||||
};
 | 
			
		||||
var __importStar = (this && this.__importStar) || function (mod) {
 | 
			
		||||
    if (mod && mod.__esModule) return mod;
 | 
			
		||||
    var result = {};
 | 
			
		||||
    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
 | 
			
		||||
    result["default"] = mod;
 | 
			
		||||
    return result;
 | 
			
		||||
};
 | 
			
		||||
Object.defineProperty(exports, "__esModule", { value: true });
 | 
			
		||||
const exec_1 = __webpack_require__(986);
 | 
			
		||||
const io = __importStar(__webpack_require__(1));
 | 
			
		||||
const fs_1 = __webpack_require__(747);
 | 
			
		||||
function getTarPath() {
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
        // Explicitly use BSD Tar on Windows
 | 
			
		||||
        const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
        if (IS_WINDOWS) {
 | 
			
		||||
            const systemTar = `${process.env["windir"]}\\System32\\tar.exe`;
 | 
			
		||||
            if (fs_1.existsSync(systemTar)) {
 | 
			
		||||
                return systemTar;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        return yield io.which("tar", true);
 | 
			
		||||
    });
 | 
			
		||||
}
 | 
			
		||||
function execTar(args) {
 | 
			
		||||
    var _a, _b;
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
        try {
 | 
			
		||||
            const tarPath = yield getTarPath();
 | 
			
		||||
            const tarExec = process.platform !== "win32" ? `sudo ${tarPath}` : tarPath;
 | 
			
		||||
            yield exec_1.exec(`"${tarExec}"`, args);
 | 
			
		||||
        }
 | 
			
		||||
        catch (error) {
 | 
			
		||||
            const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
            if (IS_WINDOWS) {
 | 
			
		||||
                throw new Error(`Tar failed with error: ${(_a = error) === null || _a === void 0 ? void 0 : _a.message}. Ensure BSD tar is installed and on the PATH.`);
 | 
			
		||||
            }
 | 
			
		||||
            throw new Error(`Tar failed with error: ${(_b = error) === null || _b === void 0 ? void 0 : _b.message}`);
 | 
			
		||||
        }
 | 
			
		||||
    });
 | 
			
		||||
}
 | 
			
		||||
function extractTar(archivePath, targetDirectory) {
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
        // Create directory to extract tar into
 | 
			
		||||
        yield io.mkdirP(targetDirectory);
 | 
			
		||||
        const args = ["-xz", "-f", archivePath, "-C", targetDirectory];
 | 
			
		||||
        yield execTar(args);
 | 
			
		||||
    });
 | 
			
		||||
}
 | 
			
		||||
exports.extractTar = extractTar;
 | 
			
		||||
function createTar(archivePath, sourceDirectory) {
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
        const args = ["-cz", "-f", archivePath, "-C", sourceDirectory, "."];
 | 
			
		||||
        yield execTar(args);
 | 
			
		||||
    });
 | 
			
		||||
}
 | 
			
		||||
exports.createTar = createTar;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/***/ }),
 | 
			
		||||
 | 
			
		||||
/***/ 986:
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										96
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										96
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							@ -2879,11 +2879,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
 | 
			
		||||
};
 | 
			
		||||
Object.defineProperty(exports, "__esModule", { value: true });
 | 
			
		||||
const core = __importStar(__webpack_require__(470));
 | 
			
		||||
const exec_1 = __webpack_require__(986);
 | 
			
		||||
const io = __importStar(__webpack_require__(1));
 | 
			
		||||
const path = __importStar(__webpack_require__(622));
 | 
			
		||||
const cacheHttpClient = __importStar(__webpack_require__(154));
 | 
			
		||||
const constants_1 = __webpack_require__(694);
 | 
			
		||||
const tar_1 = __webpack_require__(943);
 | 
			
		||||
const utils = __importStar(__webpack_require__(443));
 | 
			
		||||
function run() {
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
@ -2909,23 +2908,7 @@ function run() {
 | 
			
		||||
            core.debug(`Cache Path: ${cachePath}`);
 | 
			
		||||
            const archivePath = path.join(yield utils.createTempDirectory(), "cache.tgz");
 | 
			
		||||
            core.debug(`Archive Path: ${archivePath}`);
 | 
			
		||||
            // http://man7.org/linux/man-pages/man1/tar.1.html
 | 
			
		||||
            // tar [-options] <name of the tar archive> [files or directories which to add into archive]
 | 
			
		||||
            const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
            const args = IS_WINDOWS
 | 
			
		||||
                ? [
 | 
			
		||||
                    "-cz",
 | 
			
		||||
                    "--force-local",
 | 
			
		||||
                    "-f",
 | 
			
		||||
                    archivePath.replace(/\\/g, "/"),
 | 
			
		||||
                    "-C",
 | 
			
		||||
                    cachePath.replace(/\\/g, "/"),
 | 
			
		||||
                    "."
 | 
			
		||||
                ]
 | 
			
		||||
                : ["-cz", "-f", archivePath, "-C", cachePath, "."];
 | 
			
		||||
            const tarPath = yield io.which("tar", true);
 | 
			
		||||
            core.debug(`Tar Path: ${tarPath}`);
 | 
			
		||||
            yield exec_1.exec(`"${tarPath}"`, args);
 | 
			
		||||
            yield tar_1.createTar(archivePath, cachePath);
 | 
			
		||||
            const fileSizeLimit = 400 * 1024 * 1024; // 400MB
 | 
			
		||||
            const archiveFileSize = utils.getArchiveFileSize(archivePath);
 | 
			
		||||
            core.debug(`File Size: ${archiveFileSize}`);
 | 
			
		||||
@ -5133,6 +5116,81 @@ var personalaccesstoken_1 = __webpack_require__(327);
 | 
			
		||||
exports.PersonalAccessTokenCredentialHandler = personalaccesstoken_1.PersonalAccessTokenCredentialHandler;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/***/ }),
 | 
			
		||||
 | 
			
		||||
/***/ 943:
 | 
			
		||||
/***/ (function(__unusedmodule, exports, __webpack_require__) {
 | 
			
		||||
 | 
			
		||||
"use strict";
 | 
			
		||||
 | 
			
		||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
 | 
			
		||||
    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
 | 
			
		||||
    return new (P || (P = Promise))(function (resolve, reject) {
 | 
			
		||||
        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
 | 
			
		||||
        function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
 | 
			
		||||
        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
 | 
			
		||||
        step((generator = generator.apply(thisArg, _arguments || [])).next());
 | 
			
		||||
    });
 | 
			
		||||
};
 | 
			
		||||
var __importStar = (this && this.__importStar) || function (mod) {
 | 
			
		||||
    if (mod && mod.__esModule) return mod;
 | 
			
		||||
    var result = {};
 | 
			
		||||
    if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
 | 
			
		||||
    result["default"] = mod;
 | 
			
		||||
    return result;
 | 
			
		||||
};
 | 
			
		||||
Object.defineProperty(exports, "__esModule", { value: true });
 | 
			
		||||
const exec_1 = __webpack_require__(986);
 | 
			
		||||
const io = __importStar(__webpack_require__(1));
 | 
			
		||||
const fs_1 = __webpack_require__(747);
 | 
			
		||||
function getTarPath() {
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
        // Explicitly use BSD Tar on Windows
 | 
			
		||||
        const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
        if (IS_WINDOWS) {
 | 
			
		||||
            const systemTar = `${process.env["windir"]}\\System32\\tar.exe`;
 | 
			
		||||
            if (fs_1.existsSync(systemTar)) {
 | 
			
		||||
                return systemTar;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        return yield io.which("tar", true);
 | 
			
		||||
    });
 | 
			
		||||
}
 | 
			
		||||
function execTar(args) {
 | 
			
		||||
    var _a, _b;
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
        try {
 | 
			
		||||
            const tarPath = yield getTarPath();
 | 
			
		||||
            const tarExec = process.platform !== "win32" ? `sudo ${tarPath}` : tarPath;
 | 
			
		||||
            yield exec_1.exec(`"${tarExec}"`, args);
 | 
			
		||||
        }
 | 
			
		||||
        catch (error) {
 | 
			
		||||
            const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
            if (IS_WINDOWS) {
 | 
			
		||||
                throw new Error(`Tar failed with error: ${(_a = error) === null || _a === void 0 ? void 0 : _a.message}. Ensure BSD tar is installed and on the PATH.`);
 | 
			
		||||
            }
 | 
			
		||||
            throw new Error(`Tar failed with error: ${(_b = error) === null || _b === void 0 ? void 0 : _b.message}`);
 | 
			
		||||
        }
 | 
			
		||||
    });
 | 
			
		||||
}
 | 
			
		||||
function extractTar(archivePath, targetDirectory) {
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
        // Create directory to extract tar into
 | 
			
		||||
        yield io.mkdirP(targetDirectory);
 | 
			
		||||
        const args = ["-xz", "-f", archivePath, "-C", targetDirectory];
 | 
			
		||||
        yield execTar(args);
 | 
			
		||||
    });
 | 
			
		||||
}
 | 
			
		||||
exports.extractTar = extractTar;
 | 
			
		||||
function createTar(archivePath, sourceDirectory) {
 | 
			
		||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
			
		||||
        const args = ["-cz", "-f", archivePath, "-C", sourceDirectory, "."];
 | 
			
		||||
        yield execTar(args);
 | 
			
		||||
    });
 | 
			
		||||
}
 | 
			
		||||
exports.createTar = createTar;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/***/ }),
 | 
			
		||||
 | 
			
		||||
/***/ 986:
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										58
									
								
								examples.md
									
									
									
									
									
								
							
							
						
						
									
										58
									
								
								examples.md
									
									
									
									
									
								
							@ -1,27 +1,20 @@
 | 
			
		||||
# Examples
 | 
			
		||||
 | 
			
		||||
- [Examples](#examples)
 | 
			
		||||
  - [C# - Nuget](#c---nuget)
 | 
			
		||||
  - [Elixir - Mix](#elixir---mix)
 | 
			
		||||
  - [Go - Modules](#go---modules)
 | 
			
		||||
  - [Java - Gradle](#java---gradle)
 | 
			
		||||
  - [Java - Maven](#java---maven)
 | 
			
		||||
  - [Node - npm](#node---npm)
 | 
			
		||||
    - [macOS and Ubuntu](#macos-and-ubuntu)
 | 
			
		||||
    - [Windows](#windows)
 | 
			
		||||
    - [Using multiple systems and `npm config`](#using-multiple-systems-and-npm-config)
 | 
			
		||||
  - [Node - Yarn](#node---yarn)
 | 
			
		||||
  - [PHP - Composer](#php---composer)
 | 
			
		||||
  - [Python - pip](#python---pip)
 | 
			
		||||
    - [Simple example](#simple-example)
 | 
			
		||||
    - [Multiple OS's in a workflow](#multiple-oss-in-a-workflow)
 | 
			
		||||
    - [Using a script to get cache location](#using-a-script-to-get-cache-location)
 | 
			
		||||
  - [Ruby - Gem](#ruby---gem)
 | 
			
		||||
  - [Rust - Cargo](#rust---cargo)
 | 
			
		||||
  - [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
 | 
			
		||||
  - [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
 | 
			
		||||
- [C# - NuGet](#c---nuget)
 | 
			
		||||
- [Elixir - Mix](#elixir---mix)
 | 
			
		||||
- [Go - Modules](#go---modules)
 | 
			
		||||
- [Java - Gradle](#java---gradle)
 | 
			
		||||
- [Java - Maven](#java---maven)
 | 
			
		||||
- [Node - npm](#node---npm)
 | 
			
		||||
- [Node - Yarn](#node---yarn)
 | 
			
		||||
- [PHP - Composer](#php---composer)
 | 
			
		||||
- [Python - pip](#python---pip)
 | 
			
		||||
- [Ruby - Gem](#ruby---gem)
 | 
			
		||||
- [Rust - Cargo](#rust---cargo)
 | 
			
		||||
- [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
 | 
			
		||||
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
 | 
			
		||||
 | 
			
		||||
## C# - Nuget
 | 
			
		||||
## C# - NuGet
 | 
			
		||||
Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/package-references-in-project-files#locking-dependencies):
 | 
			
		||||
 | 
			
		||||
```yaml
 | 
			
		||||
@ -33,6 +26,21 @@ Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/packa
 | 
			
		||||
      ${{ runner.os }}-nuget-
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
Depending on the environment, huge packages might be pre-installed in the global cache folder.
 | 
			
		||||
If you do not want to include them, consider to move the cache folder like below.
 | 
			
		||||
>Note: This workflow does not work for projects that require files to be placed in user profile package folder
 | 
			
		||||
```yaml
 | 
			
		||||
env:
 | 
			
		||||
  NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
 | 
			
		||||
steps:
 | 
			
		||||
  - uses: actions/cache@v1
 | 
			
		||||
    with:
 | 
			
		||||
      path: ${{ github.workspace }}/.nuget/packages
 | 
			
		||||
      key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
 | 
			
		||||
      restore-keys: |
 | 
			
		||||
        ${{ runner.os }}-nuget-
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Elixir - Mix
 | 
			
		||||
```yaml
 | 
			
		||||
- uses: actions/cache@v1
 | 
			
		||||
@ -226,6 +234,14 @@ Replace `~/.cache/pip` with the correct `path` if not using Ubuntu.
 | 
			
		||||
    restore-keys: |
 | 
			
		||||
      ${{ runner.os }}-gem-
 | 
			
		||||
```
 | 
			
		||||
When dependencies are installed later in the workflow, we must specify the same path for the bundler.
 | 
			
		||||
 | 
			
		||||
```yaml
 | 
			
		||||
- name: Bundle install
 | 
			
		||||
  run: |
 | 
			
		||||
    bundle config path vendor/bundle
 | 
			
		||||
    bundle install --jobs 4 --retry 3
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Rust - Cargo
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										12
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										12
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							@ -4859,9 +4859,9 @@
 | 
			
		||||
      "dev": true
 | 
			
		||||
    },
 | 
			
		||||
    "prettier": {
 | 
			
		||||
      "version": "1.18.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.18.2.tgz",
 | 
			
		||||
      "integrity": "sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==",
 | 
			
		||||
      "version": "1.19.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz",
 | 
			
		||||
      "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==",
 | 
			
		||||
      "dev": true
 | 
			
		||||
    },
 | 
			
		||||
    "prettier-linter-helpers": {
 | 
			
		||||
@ -5983,9 +5983,9 @@
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "typescript": {
 | 
			
		||||
      "version": "3.6.4",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.6.4.tgz",
 | 
			
		||||
      "integrity": "sha512-unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg==",
 | 
			
		||||
      "version": "3.7.3",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.3.tgz",
 | 
			
		||||
      "integrity": "sha512-Mcr/Qk7hXqFBXMN7p7Lusj1ktCBydylfQM/FZCk5glCNQJrCUKPkMHdo9R0MTFWsC/4kPFvDS0fDPvukfCkFsw==",
 | 
			
		||||
      "dev": true
 | 
			
		||||
    },
 | 
			
		||||
    "uglify-js": {
 | 
			
		||||
 | 
			
		||||
@ -46,8 +46,8 @@
 | 
			
		||||
    "jest": "^24.8.0",
 | 
			
		||||
    "jest-circus": "^24.7.1",
 | 
			
		||||
    "nock": "^11.7.0",
 | 
			
		||||
    "prettier": "1.18.2",
 | 
			
		||||
    "prettier": "^1.19.1",
 | 
			
		||||
    "ts-jest": "^24.0.2",
 | 
			
		||||
    "typescript": "^3.6.4"
 | 
			
		||||
    "typescript": "^3.7.3"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -1,9 +1,8 @@
 | 
			
		||||
import * as core from "@actions/core";
 | 
			
		||||
import { exec } from "@actions/exec";
 | 
			
		||||
import * as io from "@actions/io";
 | 
			
		||||
import * as path from "path";
 | 
			
		||||
import * as cacheHttpClient from "./cacheHttpClient";
 | 
			
		||||
import { Events, Inputs, State } from "./constants";
 | 
			
		||||
import { extractTar } from "./tar";
 | 
			
		||||
import * as utils from "./utils/actionUtils";
 | 
			
		||||
 | 
			
		||||
async function run(): Promise<void> {
 | 
			
		||||
@ -87,27 +86,7 @@ async function run(): Promise<void> {
 | 
			
		||||
                )} MB (${archiveFileSize} B)`
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            // Create directory to extract tar into
 | 
			
		||||
            await io.mkdirP(cachePath);
 | 
			
		||||
 | 
			
		||||
            // http://man7.org/linux/man-pages/man1/tar.1.html
 | 
			
		||||
            // tar [-options] <name of the tar archive> [files or directories which to add into archive]
 | 
			
		||||
            const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
            const args = IS_WINDOWS
 | 
			
		||||
                ? [
 | 
			
		||||
                      "-xz",
 | 
			
		||||
                      "--force-local",
 | 
			
		||||
                      "-f",
 | 
			
		||||
                      archivePath.replace(/\\/g, "/"),
 | 
			
		||||
                      "-C",
 | 
			
		||||
                      cachePath.replace(/\\/g, "/")
 | 
			
		||||
                  ]
 | 
			
		||||
                : ["-xz", "-f", archivePath, "-C", cachePath];
 | 
			
		||||
 | 
			
		||||
            const tarPath = await io.which("tar", true);
 | 
			
		||||
            core.debug(`Tar Path: ${tarPath}`);
 | 
			
		||||
 | 
			
		||||
            await exec(`"${tarPath}"`, args);
 | 
			
		||||
            await extractTar(archivePath, cachePath);
 | 
			
		||||
 | 
			
		||||
            const isExactKeyMatch = utils.isExactKeyMatch(
 | 
			
		||||
                primaryKey,
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										22
									
								
								src/save.ts
									
									
									
									
									
								
							
							
						
						
									
										22
									
								
								src/save.ts
									
									
									
									
									
								
							@ -1,9 +1,8 @@
 | 
			
		||||
import * as core from "@actions/core";
 | 
			
		||||
import { exec } from "@actions/exec";
 | 
			
		||||
import * as io from "@actions/io";
 | 
			
		||||
import * as path from "path";
 | 
			
		||||
import * as cacheHttpClient from "./cacheHttpClient";
 | 
			
		||||
import { Events, Inputs, State } from "./constants";
 | 
			
		||||
import { createTar } from "./tar";
 | 
			
		||||
import * as utils from "./utils/actionUtils";
 | 
			
		||||
 | 
			
		||||
async function run(): Promise<void> {
 | 
			
		||||
@ -46,24 +45,7 @@ async function run(): Promise<void> {
 | 
			
		||||
        );
 | 
			
		||||
        core.debug(`Archive Path: ${archivePath}`);
 | 
			
		||||
 | 
			
		||||
        // http://man7.org/linux/man-pages/man1/tar.1.html
 | 
			
		||||
        // tar [-options] <name of the tar archive> [files or directories which to add into archive]
 | 
			
		||||
        const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
        const args = IS_WINDOWS
 | 
			
		||||
            ? [
 | 
			
		||||
                  "-cz",
 | 
			
		||||
                  "--force-local",
 | 
			
		||||
                  "-f",
 | 
			
		||||
                  archivePath.replace(/\\/g, "/"),
 | 
			
		||||
                  "-C",
 | 
			
		||||
                  cachePath.replace(/\\/g, "/"),
 | 
			
		||||
                  "."
 | 
			
		||||
              ]
 | 
			
		||||
            : ["-cz", "-f", archivePath, "-C", cachePath, "."];
 | 
			
		||||
 | 
			
		||||
        const tarPath = await io.which("tar", true);
 | 
			
		||||
        core.debug(`Tar Path: ${tarPath}`);
 | 
			
		||||
        await exec(`"${tarPath}"`, args);
 | 
			
		||||
        await createTar(archivePath, cachePath);
 | 
			
		||||
 | 
			
		||||
        const fileSizeLimit = 400 * 1024 * 1024; // 400MB
 | 
			
		||||
        const archiveFileSize = utils.getArchiveFileSize(archivePath);
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										49
									
								
								src/tar.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										49
									
								
								src/tar.ts
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,49 @@
 | 
			
		||||
import { exec } from "@actions/exec";
 | 
			
		||||
import * as io from "@actions/io";
 | 
			
		||||
import { existsSync } from "fs";
 | 
			
		||||
 | 
			
		||||
async function getTarPath(): Promise<string> {
 | 
			
		||||
    // Explicitly use BSD Tar on Windows
 | 
			
		||||
    const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
    if (IS_WINDOWS) {
 | 
			
		||||
        const systemTar = `${process.env["windir"]}\\System32\\tar.exe`;
 | 
			
		||||
        if (existsSync(systemTar)) {
 | 
			
		||||
            return systemTar;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    return await io.which("tar", true);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async function execTar(args: string[]): Promise<void> {
 | 
			
		||||
    try {
 | 
			
		||||
        const tarPath = await getTarPath();
 | 
			
		||||
        const tarExec = process.platform !== "win32" ? `sudo ${tarPath}` : tarPath;
 | 
			
		||||
        await exec(`"${tarExec}"`, args);
 | 
			
		||||
    } catch (error) {
 | 
			
		||||
        const IS_WINDOWS = process.platform === "win32";
 | 
			
		||||
        if (IS_WINDOWS) {
 | 
			
		||||
            throw new Error(
 | 
			
		||||
                `Tar failed with error: ${error?.message}. Ensure BSD tar is installed and on the PATH.`
 | 
			
		||||
            );
 | 
			
		||||
        }
 | 
			
		||||
        throw new Error(`Tar failed with error: ${error?.message}`);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export async function extractTar(
 | 
			
		||||
    archivePath: string,
 | 
			
		||||
    targetDirectory: string
 | 
			
		||||
): Promise<void> {
 | 
			
		||||
    // Create directory to extract tar into
 | 
			
		||||
    await io.mkdirP(targetDirectory);
 | 
			
		||||
    const args = ["-xz", "-f", archivePath, "-C", targetDirectory];
 | 
			
		||||
    await execTar(args);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export async function createTar(
 | 
			
		||||
    archivePath: string,
 | 
			
		||||
    sourceDirectory: string
 | 
			
		||||
): Promise<void> {
 | 
			
		||||
    const args = ["-cz", "-f", archivePath, "-C", sourceDirectory, "."];
 | 
			
		||||
    await execTar(args);
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user