diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 96f1cd9..4c313f9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.0" + ".": "1.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 19a15d2..bb2deaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.4.0](https://github.com/stordco/actions-elixir/compare/v1.3.0...v1.4.0) (2024-02-20) + + +### Features + +* clean dependencies on reruns ([#31](https://github.com/stordco/actions-elixir/issues/31)) ([2b68339](https://github.com/stordco/actions-elixir/commit/2b6833955d256c29a74692342decc7a9ed3432ea)) +* remove tool versions action with new native setup-beam feature ([#37](https://github.com/stordco/actions-elixir/issues/37)) ([ba2cddb](https://github.com/stordco/actions-elixir/commit/ba2cddbe478a8f7692e5b38d2c3deb9a6b9055b4)) + + +### Bug Fixes + +* update release please configuration ([#39](https://github.com/stordco/actions-elixir/issues/39)) ([25975e5](https://github.com/stordco/actions-elixir/commit/25975e5902c1712d21219ae130531f563ebb0738)) + ## [1.3.0](https://github.com/stordco/actions-elixir/compare/v1.2.3...v1.3.0) (2023-08-28) diff --git a/docker-build/README.md b/docker-build/README.md index 7c26a87..2b99d00 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.3.0 + uses: stordco/actions-elixir/docker-build@v1.4.0 ``` @@ -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.3.0 + uses: stordco/actions-elixir/docker-build@v1.4.0 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.3.0 + uses: stordco/actions-elixir/docker-build@v1.4.0 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.3.0 + uses: stordco/actions-elixir/docker-build@v1.4.0 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 a586c82..7a67228 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.3.0 + uses: stordco/actions-elixir/setup@v1.4.0 ``` @@ -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.3.0 + uses: stordco/actions-elixir/setup@v1.4.0 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.3.0 + uses: stordco/actions-elixir/setup@v1.4.0 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.3.0 + uses: stordco/actions-elixir/setup@v1.4.0 with: cache-version: v2 ```