Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/checkout action to v4 #101

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
name: actionlint with reviewdog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: actionlint
uses: reviewdog/action-actionlint@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-and-release-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

# reads toolchain info from /rust-toolchain.toml
# we are using a fork of actions-rs/toolchain for rust-toolchain.toml support
Expand All @@ -26,7 +26,7 @@
# https://github.com/Swatinem/rust-cache/tree/cb2cf0cc7c5198d3364b9630e2c3d457f160790c#example-usage
- uses: Swatinem/rust-cache@v2
with:
working-directory: server/

Check failure on line 29 in .github/workflows/build-and-release-application.yaml

View workflow job for this annotation

GitHub Actions / actionlint with reviewdog

[actionlint] reported by reviewdog 🐶 input "working-directory" is not defined in action "Swatinem/rust-cache@v2". available inputs are "cache-all-crates", "cache-directories", "cache-on-failure", "cache-provider", "cache-targets", "env-vars", "key", "prefix-key", "save-if", "shared-key", "workspaces" [action] Raw Output: .github/workflows/build-and-release-application.yaml:29:11: input "working-directory" is not defined in action "Swatinem/rust-cache@v2". available inputs are "cache-all-crates", "cache-directories", "cache-on-failure", "cache-provider", "cache-targets", "env-vars", "key", "prefix-key", "save-if", "shared-key", "workspaces" [action]

# buf CLIがビルドに必要
- uses: bufbuild/buf-setup-action@v1
Expand All @@ -34,25 +34,25 @@
# GitHubのUIにエラー/警告を表示してくれるので actions-rs/cargo を利用している

- name: Cargo fmt
uses: actions-rs/cargo@v1

Check failure on line 37 in .github/workflows/build-and-release-application.yaml

View workflow job for this annotation

GitHub Actions / actionlint with reviewdog

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/build-and-release-application.yaml:37:15: the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
command: fmt
args: --manifest-path server/Cargo.toml --all -- --check

- name: Cargo build
uses: actions-rs/cargo@v1

Check failure on line 43 in .github/workflows/build-and-release-application.yaml

View workflow job for this annotation

GitHub Actions / actionlint with reviewdog

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/build-and-release-application.yaml:43:15: the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
command: build
args: --manifest-path server/Cargo.toml

- name: Cargo clippy
uses: actions-rs/cargo@v1

Check failure on line 49 in .github/workflows/build-and-release-application.yaml

View workflow job for this annotation

GitHub Actions / actionlint with reviewdog

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/build-and-release-application.yaml:49:15: the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
command: clippy
args: --manifest-path server/Cargo.toml

- name: Cargo test
uses: actions-rs/cargo@v1

Check failure on line 55 in .github/workflows/build-and-release-application.yaml

View workflow job for this annotation

GitHub Actions / actionlint with reviewdog

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/build-and-release-application.yaml:55:15: the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
command: test
args: --manifest-path server/Cargo.toml --all-features
Expand All @@ -68,7 +68,7 @@
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
id: buildx
Expand Down
Loading