GitHub Action
File Hash for Cache
v2.0.0-alpha
Latest version
This GitHub Action generates a unique key (file hash) from one or more files for caching.
It works on Linux, macOS, and Windows runners.
- uses: KEINOS/gh-action-hash-for-cache@main
id: <ID to call the hash from other steps>
with:
path: |
<path to target file1>
<path to target file2>
variant: <a string>
path
: A list of files that will be hashed.variant
: A string to be hashed. (Optional)- Exposed variable:
hash
- To obtain the hash value:
steps.<id>.outputs.hash
- To obtain the hash value:
- Detailed examples follows.
- Simply generates a hash of the given entry.
- If the content of the entry is changed, a different hash will be obtained.
- Useful to generate a unique key or ID for caching.
- Works on Linux, macOS, and Windows runners.
- Aims to be a helper action for "actions/cache@v2".
- It is also possible to specify a time-limited hash.
- Help us to fix issues @ GitHub.
- View on marketplace.
Basic format of the workflow step.
jobs:
<job_name>:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: <name of the step to display>
uses: KEINOS/gh-action-hash-for-cache@main
id: <ID to call the hash from other steps>
with:
path: |
<path to target file1>
<path to target file2>
variant: <a string>
- Exposed variables:
steps.<id>.outputs.hash
In this example, if "Dockerfile" is changed, the hash will be changed.
- name: Get a hash key from a file
id: hash-now-dont-you-cry
uses: KEINOS/gh-action-hash-for-cache@main
with:
path: ./Dockerfile
- name: Activate caching
id: cache
uses: actions/cache@v3
with:
path: /path/target/dir/to/cache/and/restore
key: ${{ steps.hash-now-dont-you-cry.outputs.hash }}
Multiple target files can be specified. The below example, if "composer.json" or "composer.lock" is changed, the hash will be changed.
- name: Get a hash key from two files
id: hash-now-dont-you-cry
uses: KEINOS/gh-action-hash-for-cache@main
with:
path: |
./composer.json
./composer.lock
- name: Activate caching
id: cache
uses: actions/cache@v3
with:
path: /path/target/dir/to/cache/and/restore
key: ${{ steps.hash-now-dont-you-cry.outputs.hash }}
In this example, if "go.mod" or "go.sum" is modified or the value of "variant" is changed, the hash will be changed.
- name: Get hash key
id: hash-now-dont-you-cry
uses: KEINOS/gh-action-hash-for-cache@main
with:
path: |
./go.mod
./go.sum
variant: "v1.0.0"
- name: Activate caching
id: cache
uses: actions/cache@v3
with:
path: /path/target/dir/to/cache/and/restore
key: ${{ steps.hash-now-dont-you-cry.outputs.hash }}
In this example, if "go.mod" or "go.sum" is modified or the month is changed, the hash will be changed.
- Note that the "TZ" (time zone) can be changed to suit your country.
- name: Get hash key
id: hash-now-dont-you-cry
uses: KEINOS/gh-action-hash-for-cache@main
with:
path: |
./go.mod
./go.sum
variant: $(TZ=UTC-9 date '+%Y%m')
- name: Activate caching
id: cache
uses: actions/cache@v3
with:
path: /path/target/dir/to/cache/and/restore
key: ${{ steps.hash-now-dont-you-cry.outputs.hash }}