diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 0000000..fc8f3bd --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,102 @@ +name: Update + +on: + schedule: + # The scheduled jobs run only on `master`. Then we checkout `ja-all-enable`. + # + - cron: '0 0 * * *' + push: + branches: + - master + - ja-all-enabled + +jobs: + update: + name: Update + runs-on: ubuntu-18.04 + + steps: + - name: checkout + uses: actions/checkout@v2 + with: + ref: ja-all-enabled + + - name: setup-python + uses: actions/setup-python@v1 + with: + python-version: 3.8.0 + + - name: rust-toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable-x86_64-unknown-linux-gnu + default: true + profile: minimal + + - name: '`cargo install --debug --bin cargo-add cargo-edit`' + uses: actions-rs/cargo@v1 + with: + command: install + args: --debug --bin cargo-add cargo-edit + + - name: '`cargo install --debug cargo-outdated`' + uses: actions-rs/cargo@v1 + with: + command: install + args: --debug cargo-outdated + + - name: Upgrade the dependencies + id: upgrade + run: | + import json + import subprocess + from collections import defaultdict + + cargo_outdated = json.loads(subprocess.run( + ['cargo', 'outdated', '--format', 'json', '-d', '1'], + stdout=subprocess.PIPE, check=True, + ).stdout.decode('utf8')) + + crates = defaultdict(list) + body = '' + if body == '': + body = 'Only dependencies of dependencies.' + + for target, crates in crates.items(): + args = ['cargo', 'add'] + if target: + args.extend(['--target', target]) + args.extend(f'{name}@={ver}' for name, ver in crates) + subprocess.run(args, check=True) + + print(f'::set-output name=body::{body}') + shell: python3 {0} + + - name: '`cargo update`' + uses: actions-rs/cargo@v1 + with: + command: update + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: '[bot] Update the crates' + title: '[bot] Update the crates' + body: ${{ steps.upgrade.outputs.body }} + branch: ja-all-enabled-update-the-crates + base: ja-all-enabled diff --git a/README.md b/README.md index 70cc002..c61be5b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ | 名前 | Rustバージョン | 内容 | |:-- |:--:|:-- | -| [ja][ja-branch] | 1.36.0 | 標準的な内容のテンプレートに日本語のソースコードコメントを付けたもの。注意:2019年言語アップデート後の環境向け。Rust 1.15.1の環境では使用できない | +| [ja][ja-branch] | 1.39.0 | 標準的な内容のテンプレートに日本語のソースコードコメントを付けたもの。注意:~~2019~~ 2020年言語アップデート後の環境向け。Rust 1.15.1の環境では使用できない | 使いかたについては、テンプレートの名前をクリックして表示されたREADMEを参照してください。 pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy