Skip to content

Commit

Permalink
Merge branch 'master' into github_actions_remove_deprecating_set-outp…
Browse files Browse the repository at this point in the history
…ut_command
  • Loading branch information
casey authored Jan 24, 2024
2 parents f6c0bf9 + fd9ecff commit e7aafb4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
groups:
GitHub_Actions:
patterns:
- "*" # open a single pull request to update all actions
schedule:
interval: weekly
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
RUSTFLAGS: --deny warnings

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Rust Toolchain Components
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
RUSTFLAGS: --deny warnings

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Rust Toolchain Components
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
RUSTFLAGS: --deny warnings

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Remove Broken WSL bash executable
if: ${{ matrix.os == 'windows-latest' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Rust Toolchain Components
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
shell: bash

- name: Publish Archive
uses: softprops/[email protected].5
uses: softprops/[email protected].15
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
draft: false
Expand All @@ -93,7 +93,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish Changelog
uses: softprops/[email protected].5
uses: softprops/[email protected].15
if: >-
${{
startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3078,7 +3078,7 @@ A non-normative grammar of `justfile`s can be found in

Before `just` was a fancy Rust program it was a tiny shell script that called
`make`. You can find the old version in
[extras/just.sh](https://github.com/casey/just/blob/master/extras/just.sh).
[contrib/just.sh](https://github.com/casey/just/blob/master/contrib/just.sh).

### User `justfile`s

Expand Down
2 changes: 1 addition & 1 deletion README.中文.md
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,7 @@ fpath=($HOMEBREW_PREFIX/share/zsh/site-functions $fpath)

### just.sh

`just` 成为一个精致的 Rust 程序之前,它是一个很小的 Shell 脚本,叫 `make`。你可以在 [extras/just.sh](https://github.com/casey/just/blob/master/extras/just.sh) 中找到旧版本。
`just` 成为一个精致的 Rust 程序之前,它是一个很小的 Shell 脚本,叫 `make`。你可以在 [contrib/just.sh](https://github.com/casey/just/blob/master/contrib/just.sh) 中找到旧版本。

### 用户 `justfile`

Expand Down
File renamed without changes.

0 comments on commit e7aafb4

Please sign in to comment.