diff --git a/Gemfile.lock b/Gemfile.lock index 95156ec..8d66f64 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - serverless-tools (0.17.21) + serverless-tools (0.17.22) aws-sdk-ecr aws-sdk-lambda aws-sdk-s3 diff --git a/action.yml b/action.yml index 7ccb36e..68a491a 100644 --- a/action.yml +++ b/action.yml @@ -6,6 +6,6 @@ inputs: required: true runs: using: "docker" - image: "docker://ghcr.io/fac/serverless-tools-gha:v0.17.21" + image: "docker://ghcr.io/fac/serverless-tools-gha:v0.17.22" args: - ${{ inputs.command }} diff --git a/bin/bump_version b/bin/bump_version index 22b3778..0bd64e0 100755 --- a/bin/bump_version +++ b/bin/bump_version @@ -26,3 +26,5 @@ bundle install echo "Updating action version ..." sed -i "" "s/$current_version/$new_version/" "$ACTION_FILE" + +git add "$GEM_FILE" "$ACTION_FILE" Gemfile.lock && git commit -m "Bump serverless-tools to $new_version" diff --git a/lib/serverless-tools/version.rb b/lib/serverless-tools/version.rb index ea411c8..ce6e22e 100644 --- a/lib/serverless-tools/version.rb +++ b/lib/serverless-tools/version.rb @@ -1,5 +1,5 @@ module ServerlessTools # When updating the version, also update the verion specified in the image tag # of the action.yml. - VERSION = "0.17.21" + VERSION = "0.17.22" end