Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
# https://github.com/actions/checkout
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v6

# https://github.com/actions-rs/toolchain
- name: set up toolchain
Expand All @@ -25,6 +25,6 @@ jobs:

# https://github.com/pre-commit/action
- name: run pre-commit
uses: pre-commit/action@v3.0.0
uses: pre-commit/action@v3.0.1
env:
SKIP: no-commit-to-branch
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Release
on:
push:
tags:
- '*.*.*'
- "*.*.*"

jobs:
build:
Expand All @@ -22,7 +22,7 @@ jobs:

steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v3
- uses: actions/checkout@v6

# https://github.com/actions-rs/toolchain
- uses: actions-rs/toolchain@v1
Expand All @@ -38,7 +38,7 @@ jobs:
args: --release --target ${{ matrix.target }}

# https://github.com/actions/upload-artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v5
with:
name: ${{ matrix.target }}
path: target/${{ matrix.target }}/release/${{ github.event.repository.name }}
Expand All @@ -48,15 +48,15 @@ jobs:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v3
- uses: actions/checkout@v6

# https://github.com/actions/download-artifact
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v6
with:
path: target

# https://github.com/softprops/action-gh-release
- uses: softprops/action-gh-release@v1
- uses: softprops/action-gh-release@v2
with:
files: |
target/aarch64-apple-darwin/release/${{ github.event.repository.name }}
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -18,14 +18,14 @@ repos:
- --branch
- main
- repo: https://github.com/backplane/pre-commit-rust-hooks
rev: v1.1.0
rev: v1.2.1
hooks:
- id: fmt
- id: check
- id: clippy
- id: test
- repo: https://github.com/rhysd/actionlint
rev: v1.6.23
rev: v1.7.9
hooks:
- id: actionlint-docker
name: check github workflows with actionlint
Loading
Loading