diff --git a/.github/workflows/make-binary.yml b/.github/workflows/make-binary.yml index 6190d839..d7c52aa8 100644 --- a/.github/workflows/make-binary.yml +++ b/.github/workflows/make-binary.yml @@ -48,13 +48,13 @@ jobs: chmod +x ./rubyc ./rubyc --openssl-dir=/etc/ssl ./uffizzi --output=${{ inputs.darwin-bin-path }} - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: matrix.os == 'ubuntu-20.04' with: name: ${{ inputs.linux-bin-path }} path: ${{ inputs.linux-bin-path }} - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: matrix.os == 'macos-12' with: name: ${{ inputs.darwin-bin-path }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8698bbb9..7387ec04 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,11 +79,11 @@ jobs: - make-binary steps: - name: Download Linux Bin - uses: actions/download-artifact@master + uses: actions/download-artifact@v3 with: name: ${{ env.LINUX_BIN_PATH }} - name: Download Macos Bin - uses: actions/download-artifact@master + uses: actions/download-artifact@v3 with: name: ${{ env.DARWIN_BIN_PATH }} - name: Generate release notes diff --git a/Gemfile.lock b/Gemfile.lock index 69385dd2..03c07257 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - uffizzi-cli (2.4.0) + uffizzi-cli (2.4.1) activesupport awesome_print faker diff --git a/lib/uffizzi/version.rb b/lib/uffizzi/version.rb index 8374ab80..e9efdd10 100644 --- a/lib/uffizzi/version.rb +++ b/lib/uffizzi/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Uffizzi - VERSION = '2.4.0' + VERSION = '2.4.1' end