Skip to content
Draft
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
8 changes: 4 additions & 4 deletions .github/workflows/chat-ops-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
chatOpsDispatch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Slash Command Dispatch
uses: peter-evans/slash-command-dispatch@v4
uses: peter-evans/slash-command-dispatch@v5
id: scd
with:
token: ${{ secrets.CHAT_OPS }}
Expand All @@ -19,8 +19,8 @@ jobs:

- name: Edit comment with error message
if: steps.scd.outputs.error-message
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
comment-id: ${{ github.event.comment.id }}
body: |
> ${{ steps.scd.outputs.error-message }}
> ${{ steps.scd.outputs.error-message }}
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && inputs.lint)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -82,13 +82,13 @@ jobs:
- triple: x86_64-unknown-linux-gnu
runner: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.target.triple }}

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -166,14 +166,14 @@ jobs:
compile: native

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

- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.target.triple }}
if: matrix.target.compile == 'native'

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
~/.cargo/bin/
Expand All @@ -191,7 +191,7 @@ jobs:
- run: cross build --release --target ${{ matrix.target.triple }} --target-dir ${{ runner.temp }} ${{ matrix.target.args || '' }}
if: matrix.target.compile == 'cross'

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: rotz-${{ matrix.target.triple }}
path: ${{ runner.temp }}/${{ matrix.target.triple }}/release/${{ matrix.target.filename }}
Expand All @@ -207,11 +207,11 @@ jobs:
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: dtolnay/rust-toolchain@stable

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
~/.cargo/bin/
Expand All @@ -223,7 +223,7 @@ jobs:

- run: cargo publish --dry-run

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
path: artifacts

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@6

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 22.x
node-version: 24.x
cache: npm
cache-dependency-path: ./docs/package-lock.json

Expand All @@ -36,7 +36,7 @@ jobs:
npm run build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: ./docs/build

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/fmt-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
ref: ${{ github.event.client_payload.pull_request.head.ref }}
Expand All @@ -24,16 +24,16 @@ jobs:
- name: Commit to the PR branch
if: steps.fmt.outputs.format == 'true'
run: |
cargo fmt
cargo fmt
git config --global user.name 'actions-bot'
git config --global user.email '58130806+actions-bot@users.noreply.github.com'
git commit -am ":art:"
git push

- name: Add reaction
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
reactions: hooray
reactions-edit-mode: replace
reactions-edit-mode: replace
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Added `Copy` link type option for copying files instead of creating symbolic or hard links ([#384](https://github.com/volllly/rotz/issues/384))

## [1.2.1] - 2025-04-14

- Update dependencies
Expand Down
Loading