Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
636 B
YAML
24 lines
636 B
YAML
name: Change versions
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths:
|
|
- "version.txt"
|
|
jobs:
|
|
change_version:
|
|
runs-on: ubicloud
|
|
container: node:18
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: git config --system --add safe.directory /__w/windmill/windmill
|
|
- name: Change versions
|
|
run: ./.github/change-versions.sh "$(cat version.txt)"
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
- name: update lockfile
|
|
run: |
|
|
cd backend
|
|
cargo generate-lockfile
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|