From eb7779910a5d0f140d40e511976d38b2dd51250c Mon Sep 17 00:00:00 2001 From: Emma Sax <7562793+emmahsax@users.noreply.github.com> Date: Sun, 31 May 2026 09:47:22 -0500 Subject: [PATCH 1/3] Use actions/checkout@v6 --- .github/workflows/ci-common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-common.yml b/.github/workflows/ci-common.yml index 2511d1d..0b89348 100644 --- a/.github/workflows/ci-common.yml +++ b/.github/workflows/ci-common.yml @@ -21,7 +21,7 @@ jobs: env: RAILS_VERSION: ${{ inputs.rails }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - if: ${{ inputs.rails < '6.0.0' }} run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev - uses: ruby/setup-ruby@v1 From 28ef8b9a9082099deb0a229c89e455f6a0e53a5c Mon Sep 17 00:00:00 2001 From: Emma Sax <7562793+emmahsax@users.noreply.github.com> Date: Sun, 31 May 2026 09:48:57 -0500 Subject: [PATCH 2/3] Update Changelog --- CHANGELOG.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 25dd28a..93f5a87 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,4 +1,6 @@ #### Unreleased +* Use `actions/checkout@v6` + > emmahsax: https://github.com/emmahsax/okcomputer/pull/24 * Replace Ruby 3.5 with Ruby 4.0 in all rspec tests > emmahsax: https://github.com/emmahsax/okcomputer/pull/22 From 4869af2049972dbc84e5c00fbc4b4c91accf0ca5 Mon Sep 17 00:00:00 2001 From: Emma Sax <7562793+emmahsax@users.noreply.github.com> Date: Sun, 31 May 2026 09:51:10 -0500 Subject: [PATCH 3/3] Updating gitignore --- .gitignore | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c5c17c1..a1b55ba 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,12 @@ +*.DS_Store *.gem +._* .bundle/ +Gemfile.lock +coverage log/*.log pkg/ +spec/dummy/.sass-cache spec/dummy/db/*.sqlite3 spec/dummy/log/*.log spec/dummy/tmp/ -spec/dummy/.sass-cache -coverage -Gemfile.lock