From fe98aa678200f91991cb3d0d670a7cf822aaf659 Mon Sep 17 00:00:00 2001 From: Brian Surowiec Date: Sun, 3 Nov 2019 09:38:45 -0500 Subject: [PATCH 1/2] Fix repo name in contact email (#41) --- CODE_OF_CONDUCT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 8c1e784..a0047d8 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -55,7 +55,7 @@ a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at opensource+actions/create-release@github.com. All +reported by contacting the project team at opensource+actions/cache@github.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. From 8c4c641fa043d2635da0556dad36265f7052bceb Mon Sep 17 00:00:00 2001 From: Ishizaka Tomoya Date: Mon, 4 Nov 2019 12:44:06 +0900 Subject: [PATCH 2/2] Add Elixir Mix example (#42) * Add Elixir Mix example * Fix typo --- examples.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/examples.md b/examples.md index bd9bc51..1fccc23 100644 --- a/examples.md +++ b/examples.md @@ -9,6 +9,7 @@ - [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods) - [Ruby - Gem](#ruby---gem) - [Go - Modules](#go---modules) +- [Elixir - Mix](#elixir---mix) ## Node - npm @@ -108,3 +109,13 @@ uses: actions/cache@preview restore-keys: | ${{ runner.os }}-go- ``` + +## Elixir - Mix +```yaml +- uses: actions/cache@preview + with: + path: deps + key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} + restore-keys: | + ${{ runner.os }}-mix- +```