From 90efa4d8e73e0226ec12a3de5ce8f9bdb3757a11 Mon Sep 17 00:00:00 2001 From: "G. Torres" Date: Wed, 23 Oct 2024 11:22:14 -0400 Subject: [PATCH] Updates upload-artifact since version 2 was deprecated in June, and 3 will be deprecated at the end of November (#332) --- .github/workflows/tests.yml | 2 +- app/models/user.rb | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index aaae696c..73b6f4d8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -44,7 +44,7 @@ jobs: - name: Run RSpec run: | bundle exec rspec - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: failure() with: name: Screenshots and logs diff --git a/app/models/user.rb b/app/models/user.rb index d0c96124..4289fb3e 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -3,5 +3,4 @@ class User < ApplicationRecord has_many :estimates has_many :comments - end