Skip to content

Commit da8bf28

Browse files
Update github actions
1 parent 1ec5f24 commit da8bf28

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/brakeman.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212

1313
- name: Install package dependencies
1414
run: >

.github/workflows/linters.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212

1313
- name: Setup Ruby
1414
uses: ruby/setup-ruby@v1
1515
with:
16-
ruby-version: 3.2
16+
ruby-version: 3.3
1717
bundler-cache: true
1818

1919
- name: Setup gems

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@ jobs:
5555
if: matrix.db == 'mysql'
5656

5757
- name: Checkout Redmine
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959
with:
6060
repository: redmine/redmine
6161
ref: ${{ matrix.redmine }}
6262
path: redmine
6363

6464
- name: Checkout additionals
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v5
6666
with:
6767
repository: AlphaNodes/additionals
6868
path: redmine/plugins/additionals
6969

7070
- name: Checkout redmine_sudo
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272
with:
7373
path: redmine/plugins/redmine_sudo
7474

lib/redmine_sudo/patches/application_controller_patch.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module ApplicationControllerPatch
77

88
included do
99
prepend InstanceOverwriteMethods
10+
1011
before_action :disable_admin
1112
end
1213

test/test_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ def prepare_tests; end
2525

2626
class ControllerTest < Redmine::ControllerTest
2727
include RedmineSudo::TestHelper
28+
2829
fixtures :all
2930
end
3031

3132
class TestCase < ActiveSupport::TestCase
3233
include RedmineSudo::TestHelper
34+
3335
fixtures :all
3436
end
3537
end

0 commit comments

Comments
 (0)