diff --git a/README.md b/README.md index 9ab165a..ba5fd0b 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ jobs: ### GitHub Actions -Action fujiwara/lambroll@v0 installs lambroll binary for Linux into /usr/local/bin. This action runs install only. +Action fujiwara/lambroll@v1 installs lambroll binary for Linux into /usr/local/bin. This action runs install only. ```yml jobs: @@ -82,12 +82,15 @@ jobs: - uses: fujiwara/lambroll@v1 with: version: v1.0.4 - os: linux # linux or darwin (default: linux) - arch: amd64 # amd64 or arm64 (default: amd64) - run: | lambroll deploy ``` +Note: +- `version` is not required, but it is recommended that the version be specified. + - The default version is not fixed and may change in the future. +- `os` and `arch` are automatically detected. (Some previous versions use `os` and `arch` as inputs, but they are deprecated.) + ## Quick start Try migrate your existing Lambda function `hello`. diff --git a/action.yml b/action.yml index e157fa0..8a18ff2 100644 --- a/action.yml +++ b/action.yml @@ -1,7 +1,7 @@ inputs: version: - description: "A version to install lamroll" - default: "v1.0.1" + description: "A version to install lambroll" + default: "v1.0.5" runs: using: "composite" steps: