From ed9eac33306cb2e018ab7ef3ae03ee32bd50ee3e Mon Sep 17 00:00:00 2001 From: Stord Bot <77021775+stord-engineering-account@users.noreply.github.com> Date: Tue, 20 Feb 2024 13:05:05 -0700 Subject: [PATCH] chore: release main --- .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 4c313f9..4918b25 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.4.0" + ".": "1.4.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bb2deaa..612774e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.4.1](https://github.com/stordco/actions-elixir/compare/v1.4.0...v1.4.1) (2024-02-20) + + +### Bug Fixes + +* add shell to dep clean ([ceef4c5](https://github.com/stordco/actions-elixir/commit/ceef4c5e8c53601e7665de9ab95ac230010af967)) + ## [1.4.0](https://github.com/stordco/actions-elixir/compare/v1.3.0...v1.4.0) (2024-02-20) diff --git a/docker-build/README.md b/docker-build/README.md index 2b99d00..5393932 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.4.0 + uses: stordco/actions-elixir/docker-build@v1.4.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.4.0 + uses: stordco/actions-elixir/docker-build@v1.4.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.4.0 + uses: stordco/actions-elixir/docker-build@v1.4.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.4.0 + uses: stordco/actions-elixir/docker-build@v1.4.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 7a67228..0e3b713 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.4.0 + uses: stordco/actions-elixir/setup@v1.4.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.4.0 + uses: stordco/actions-elixir/setup@v1.4.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.4.0 + uses: stordco/actions-elixir/setup@v1.4.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.4.0 + uses: stordco/actions-elixir/setup@v1.4.1 with: cache-version: v2 ```