From 694a5c69b1c6b72e1918bf237c6c30a464e0a146 Mon Sep 17 00:00:00 2001 From: Stord Bot <77021775+stord-engineering-account@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:29:41 -0600 Subject: [PATCH] chore: release main (#47) :robot: I have created a release *beep* *boop* ---
1.5.1 ## [1.5.1](https://github.com/stordco/actions-elixir/compare/v1.5.0...v1.5.1) (2024-08-22) ### Bug Fixes * remove cache restore key causing incorrect restore files ([#46](https://github.com/stordco/actions-elixir/issues/46)) ([0590eca](https://github.com/stordco/actions-elixir/commit/0590eca9c479112d9a29b22352910db160ebfe6e))
--- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ docker-build/README.md | 8 ++++---- setup/README.md | 8 ++++---- 4 files changed, 16 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dd8fde7..e20d7e8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.5.0" + ".": "1.5.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f56d9b..b44a25b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.5.1](https://github.com/stordco/actions-elixir/compare/v1.5.0...v1.5.1) (2024-08-22) + + +### Bug Fixes + +* remove cache restore key causing incorrect restore files ([#46](https://github.com/stordco/actions-elixir/issues/46)) ([0590eca](https://github.com/stordco/actions-elixir/commit/0590eca9c479112d9a29b22352910db160ebfe6e)) + ## [1.5.0](https://github.com/stordco/actions-elixir/compare/v1.4.1...v1.5.0) (2024-08-21) diff --git a/docker-build/README.md b/docker-build/README.md index 3327215..a00eca8 100644 --- a/docker-build/README.md +++ b/docker-build/README.md @@ -13,7 +13,7 @@ Once you have those set up, you can drop this action in. For simple usage, you s ```yaml - name: Build Docker - uses: stordco/actions-elixir/docker-build@v1.5.0 + uses: stordco/actions-elixir/docker-build@v1.5.1 ``` @@ -22,7 +22,7 @@ Most of the time when you build a docker image, you'll want to push it as well. ```yaml - name: Build Docker - uses: stordco/actions-elixir/docker-build@v1.5.0 + uses: stordco/actions-elixir/docker-build@v1.5.1 with: push: true ``` @@ -33,7 +33,7 @@ If you want to change the default image, or even add multiple, you can do so wit ```yaml - name: Build Docker - uses: stordco/actions-elixir/docker-build@v1.5.0 + uses: stordco/actions-elixir/docker-build@v1.5.1 with: images: | ghcr.io/custom-owner/custom-repo @@ -46,7 +46,7 @@ Lastly, you'll probably want to install some dependencies from our GitHub organi ```yaml - name: Build Docker - uses: stordco/actions-elixir/docker-build@v1.5.0 + uses: stordco/actions-elixir/docker-build@v1.5.1 with: github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} hex-token: ${{ secrets.HEX_API_KEY }} diff --git a/setup/README.md b/setup/README.md index 313344b..a3d7431 100644 --- a/setup/README.md +++ b/setup/README.md @@ -9,7 +9,7 @@ For basic usage, you don't have to specify anything! Just drop this file in your ```yaml - name: Setup Elixir - uses: stordco/actions-elixir/setup@v1.5.0 + uses: stordco/actions-elixir/setup@v1.5.1 ``` @@ -18,7 +18,7 @@ But some times it's not that simple. If you are using a private package from Git ```yaml - name: Setup Elixir - uses: stordco/actions-elixir/setup@v1.5.0 + uses: stordco/actions-elixir/setup@v1.5.1 with: github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} hex-token: ${{ secrets.HEX_API_KEY }} @@ -30,7 +30,7 @@ If you are not using [`asdf`](https://asdf-vm.com/) (which you really should be) ```yaml - name: Setup Elixir - uses: stordco/actions-elixir/setup@v1.5.0 + uses: stordco/actions-elixir/setup@v1.5.1 with: elixir-version: "1.14" otp-version: "25.0" @@ -42,7 +42,7 @@ Lastly, if things go wrong and your cache is breaking builds, you can manually i ```yaml - name: Setup Elixir - uses: stordco/actions-elixir/setup@v1.5.0 + uses: stordco/actions-elixir/setup@v1.5.1 with: cache-version: v2 ```