Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bug-report-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
if: ${{ github.event_name == 'pull_request' || github.repository_owner == 'activeadmin' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v46
- uses: actions/checkout@v6
- uses: tj-actions/changed-files@v47
id: changed-files
with:
files: |
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
os: ubuntu-latest
rails: rails_70
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Configure bundler (default)
run: |
echo "BUNDLE_GEMFILE=Gemfile" >> "$GITHUB_ENV"
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Create test app
run: bin/rake setup
- name: Restore cached RSpec runtimes
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: tmp/parallel_runtime_rspec.log
key: runtimes-rspec-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('tmp/parallel_runtime_rspec.log') }}
Expand All @@ -66,7 +66,7 @@ jobs:
bin/parallel_rspec
RSPEC_FILESYSTEM_CHANGES=true bin/rspec
- name: Restore cached cucumber runtimes
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: tmp/parallel_runtime_cucumber.log
key: runtimes-cucumber-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('tmp/parallel_runtime_cucumber.log') }}
Expand All @@ -79,7 +79,7 @@ jobs:
bin/cucumber --profile class-reloading
- name: Rename coverage file by matrix run
run: mv coverage/coverage.xml coverage/coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}.xml
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}
path: coverage
Expand All @@ -92,8 +92,8 @@ jobs:
if: ${{ github.repository_owner == 'activeadmin' }}
needs: [test]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
path: coverage
pattern: coverage-ruby-*
Expand All @@ -108,15 +108,15 @@ jobs:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v46
- uses: actions/checkout@v6
- uses: tj-actions/changed-files@v47
id: changed-files
with:
files: |
docs/**
package*.json
yarn.lock
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
if: steps.changed-files.outputs.any_changed == 'true'
with:
node-version: 22
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
- uses: actions/configure-pages@v5
- run: yarn install
- run: yarn docs:build
- uses: actions/upload-pages-artifact@v3
- uses: actions/upload-pages-artifact@v4
with:
path: docs/.vitepress/dist

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
name: Run eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- uses: tj-actions/changed-files@v46
- uses: tj-actions/changed-files@v47
id: changed-files
with:
files: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gherkin-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
name: Run gherkin-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v46
- uses: actions/checkout@v6
- uses: tj-actions/changed-files@v47
id: changed-files
with:
files: |
Expand All @@ -21,7 +21,7 @@ jobs:
package*.json
yarn.lock
.github/workflows/gherkin-lint.yml
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
if: steps.changed-files.outputs.any_changed == 'true'
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github-actions-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
name: Run actionlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v46
- uses: actions/checkout@v6
- uses: tj-actions/changed-files@v47
id: changed-files
with:
files: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
name: Run markdownlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v46
- uses: actions/checkout@v6
- uses: tj-actions/changed-files@v47
id: changed-files
with:
files: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
env:
BUNDLE_ONLY: ${{ vars.RUBOCOP_BUNDLE_ONLY || 'rubocop' }}
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v46
- uses: actions/checkout@v6
- uses: tj-actions/changed-files@v47
id: changed-files
with:
files: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
name: Run yamllint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v46
- uses: actions/checkout@v6
- uses: tj-actions/changed-files@v47
id: changed-files
with:
files: |
Expand Down