Skip to content

Commit ae690f2

Browse files
smartyalgoclaude
andcommitted
fix(ci): bump Action versions and fix toad-string working directory
- Bump actions/checkout v2→v4, actions/cache v2→v4, actions/setup-java v3→v4 - Fix ci_check.yml bug: working-directory was set to 'toad-map' instead of 'toad-string', silently skipping toad-string tests - Migrate release-please v3→v4: replace command/sequential-calls with config-file/manifest-file params Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 4a1691b commit ae690f2

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci_check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
ci_check:
1111
runs-on: 'ubuntu-latest'
1212
steps:
13-
- uses: 'actions/checkout@v2'
14-
- uses: 'actions/setup-java@v3'
13+
- uses: 'actions/checkout@v4'
14+
- uses: 'actions/setup-java@v4'
1515
with:
1616
distribution: 'liberica'
1717
java-version: '20'
18-
- uses: 'actions/cache@v2'
18+
- uses: 'actions/cache@v4'
1919
with:
2020
path: |
2121
~/.rustup/toolchains
@@ -114,4 +114,4 @@ jobs:
114114
- name: 'check toad-string'
115115
run: 'cargo make ci'
116116
if: github.ref == 'refs/heads/main' || steps.package_changed.outputs.toad-string == 'true'
117-
working-directory: 'toad-map'
117+
working-directory: 'toad-string'

.github/workflows/release-please.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ jobs:
1010
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: google-github-actions/release-please-action@v3
13+
- uses: google-github-actions/release-please-action@v4
1414
id: release
1515
with:
1616
token: ${{secrets.RELEASE_PLEASE_GITHUB_TOKEN}}
17-
sequential-calls: true
18-
command: manifest
17+
config-file: release-please-config.json
18+
manifest-file: .release-please-manifest.json
1919

20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
if: ${{ steps.release.outputs.releases_created }}
2222

23-
- uses: actions/cache@v2
23+
- uses: actions/cache@v4
2424
if: ${{ steps.release.outputs.releases_created }}
2525
with:
2626
path: |

0 commit comments

Comments
 (0)