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 dependency ubuntu to v22 - autoclosed #85

Closed
wants to merge 1 commit into from
Closed
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/build-and-release-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 @@ -60,7 +60,7 @@
build-image:
name: Build server docker image (and publish on master)
needs: [ lint-and-test ]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
image_tag: ${{ steps.meta.outputs.tags }}
concurrency:
Expand Down
Loading