Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/benchmark_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
sudo udevadm trigger --name-match=kvm

- name: Checkout Android source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup JDK
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Checkout
if: github.event.inputs.tramline-input == null || github.event.inputs.tramline-input == ''
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup JDK
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Checkout
if: github.event.inputs.tramline-input == null || github.event.inputs.tramline-input == ''
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup JDK
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Checkout
if: github.event.inputs.tramline-input == null || github.event.inputs.tramline-input == ''
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup JDK
uses: actions/setup-java@v4
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: [ ubuntu-latest ]
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Verify PR description
run: .github/scripts/story_link_check.sh '${{ github.event.pull_request.body }}'

Expand All @@ -27,13 +27,13 @@ jobs:
if: github.event_name == 'pull_request'
steps:
- name: Checkout master
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: master
path: master

- name: Checkout current
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: current

Expand All @@ -43,7 +43,7 @@ jobs:
lint:
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup JDK
uses: actions/setup-java@v4
Expand All @@ -58,7 +58,7 @@ jobs:
unit_tests:
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup JDK
uses: actions/setup-java@v4
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:


- name: Checkout Android source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Start Simple Docker server
run: |
Expand Down Expand Up @@ -182,13 +182,13 @@ jobs:
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout master
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: master
path: master

- name: Checkout current
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: current

Expand All @@ -199,7 +199,7 @@ jobs:
runs-on: [ ubuntu-latest ]
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.ref}}
fetch-depth: 0
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
- Bump UUID generator to v5.1.1
- Bump Compose BOM to v2025.09.01
- Bump Sentry Android to v5.12.0
- Update GH Actions `checkout` to v5

### Changes

Expand Down
Loading