lib/rubysmith/templates/%project_name%/.github/workflows/ci.yml.erb in rubysmith-6.4.0 vs lib/rubysmith/templates/%project_name%/.github/workflows/ci.yml.erb in rubysmith-6.5.0
- old
+ new
@@ -7,11 +7,11 @@
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Ruby Setup
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
@@ -19,10 +19,10 @@
- name: Build
run: bundle exec rake
<% if configuration.build_simple_cov %>
- name: SimpleCov Report
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage
<% end %>