Skip to content

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerKiKi committed Nov 17, 2022
1 parent dc13552 commit c43aefc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/brakeman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install package dependencies
run: >
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install package dependencies
run: >
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stylelint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- run: yarn install
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,25 +51,25 @@ jobs:
if: matrix.db == 'mysql'

- name: Checkout Redmine
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: redmine/redmine
ref: ${{ matrix.redmine }}
path: redmine

- name: Checkout redmine_git_hosting
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: redmine/plugins/redmine_git_hosting

- name: Checkout additionals
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: AlphaNodes/additionals
path: redmine/plugins/additionals

- name: Checkout redmine_sidekiq
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# TODO Switch back to the original repo, once https://github.com/ogom/redmine_sidekiq/pull/16 is released
# repository: ogom/redmine_sidekiq
Expand All @@ -78,7 +78,7 @@ jobs:
path: redmine/plugins/redmine_sidekiq

- name: Checkout gitolite
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: sitaramc/gitolite
path: gitolite
Expand Down

0 comments on commit c43aefc

Please sign in to comment.