Skip to content

Commit 63091ce

Browse files
chore(deps): bump the all-actions group with 5 updates
Bumps the all-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [actions/stale](https://github.com/actions/stale) | `9` | `10` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 4 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v6) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) Updates `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v4...v5) Updates `actions/stale` from 9 to 10 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v9...v10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f628bb2 commit 63091ce

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/main.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
outputs:
7878
should_skip_build: ${{ steps.core_files_changed.outputs.result == 'false' }}
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v5
8181
with:
8282
fetch-depth: 0 # Fetch all branches, main needed.
8383

@@ -134,9 +134,9 @@ jobs:
134134
APP_VERSION: ${{ matrix.app_version }}
135135
runs-on: macos-14
136136
steps:
137-
- uses: actions/checkout@v4
137+
- uses: actions/checkout@v5
138138

139-
- uses: actions/setup-python@v5
139+
- uses: actions/setup-python@v6
140140
with:
141141
python-version: "3.11"
142142

@@ -342,17 +342,17 @@ jobs:
342342
APP_VERSION: ${{ matrix.app_version }}
343343
ANDROID_PACKAGE_NAME: ${{ matrix.android_package_name }}
344344
steps:
345-
- uses: actions/checkout@v4
345+
- uses: actions/checkout@v5
346346

347-
- uses: actions/setup-python@v5
347+
- uses: actions/setup-python@v6
348348
with:
349349
python-version: "3.11"
350350

351351
- name: Setup NodeJS
352352
uses: ./.github/workflows/actions/setup-node
353353

354354
- name: Setup Java
355-
uses: actions/setup-java@v4
355+
uses: actions/setup-java@v5
356356
with:
357357
distribution: "zulu"
358358
java-version: 17
@@ -533,7 +533,7 @@ jobs:
533533
sauce_labs_description: "Android BC Wallet Single App"
534534
artifact_name: "app-release.aab"
535535
steps:
536-
- uses: actions/checkout@v4
536+
- uses: actions/checkout@v5
537537

538538
- name: Ship Artifact to SauceLabs
539539
uses: ./.github/workflows/actions/ship-to-saucelabs
@@ -568,7 +568,7 @@ jobs:
568568
# report-project: "ios-single-app-one-device-smoke"
569569
timeout-minutes: 60
570570
steps:
571-
- uses: actions/checkout@v4
571+
- uses: actions/checkout@v5
572572

573573
- name: run-aath-agents
574574
if: ${{ matrix.mobile-platform=='-p iOS' }}
@@ -592,7 +592,7 @@ jobs:
592592
directDomains: aries-mediator-agent.vonx.io,apple.com
593593

594594
- name: Fetch mobile test harness repo
595-
uses: actions/checkout@v4
595+
uses: actions/checkout@v5
596596
with:
597597
repository: hyperledger/aries-mobile-test-harness
598598
path: aries-mobile-test-harness

.github/workflows/maintenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Issue and PR
1616
steps:
1717
- name: Prune stale issues
18-
uses: actions/stale@v9
18+
uses: actions/stale@v10
1919
with:
2020
repo-token: ${{ secrets.GITHUB_TOKEN }}
2121
operations-per-run: 50

.github/workflows/quality.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
name: Lint+Format+Types
1212
steps:
1313
- name: Checkout bc-wallet-mobile
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

16-
- uses: actions/setup-python@v4
16+
- uses: actions/setup-python@v6
1717
with:
1818
python-version: "3.11"
1919

2020
- name: Setup NodeJS
2121
uses: ./.github/workflows/actions/setup-node
2222

2323
- name: Cache app node_modules
24-
uses: actions/cache@v3
24+
uses: actions/cache@v4
2525
with:
2626
path: .yarn/cache
2727
# Cache will be invalidated if yarn.lock changes
@@ -33,7 +33,7 @@ jobs:
3333
run: yarn install --immutable
3434

3535
- name: Cache bcsc-core build output
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: packages/bcsc-core/lib
3939
# Cache will be invalidated if any source file changes
@@ -66,17 +66,17 @@ jobs:
6666
name: Testing
6767
steps:
6868
- name: Checkout bc-wallet-mobile
69-
uses: actions/checkout@v4
69+
uses: actions/checkout@v5
7070

71-
- uses: actions/setup-python@v5
71+
- uses: actions/setup-python@v6
7272
with:
7373
python-version: "3.11"
7474

7575
- name: Setup NodeJS
7676
uses: ./.github/workflows/actions/setup-node
7777

7878
- name: Cache app node_modules
79-
uses: actions/cache@v3
79+
uses: actions/cache@v4
8080
with:
8181
path: .yarn/cache
8282
# Cache will be invalidated if yarn.lock changes

.github/workflows/update-ledgers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Update Indy ledgers
2626
steps:
2727
- name: Checkout bc-wallet-mobile
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
repository: ${{ github.event.pull_request.head.repo.full_name }}
3131
ref: ${{ github.event.pull_request.head.ref }}
@@ -34,7 +34,7 @@ jobs:
3434
uses: ./.github/workflows/actions/setup-node
3535

3636
- name: Cache app node_modules
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: .yarn/cache
4040
# Cache will be invalidated if yarn.lock changes

0 commit comments

Comments
 (0)