Skip to content

Commit

Permalink
chore: set-output is deprecated.
Browse files Browse the repository at this point in the history
Fixes this warning in the build artefacts.

```
Check (examples/counter_without_macros) / Run check (stable)
The `set-output` command is deprecated and will be disabled soon.
Please upgrade to using Environment Files. For more information see:
 https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
```
  • Loading branch information
martinfrances107 committed Oct 4, 2023
1 parent e0d15c1 commit dc05d93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/get-changed-examples-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
quotepath: false

- name: List example project directories that changed
run: echo '${{ steps.changed-dirs.outputs.all_changed_files }}'
run: echo '${{ steps.changed-dirs.outputs.all_changed_files }}' >> "$GITHUB_OUTPUT"

- name: Set Matrix
id: set-matrix
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-example-changed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
!examples/*.md
- name: List example files that changed
run: echo '${{ steps.changed-files.outputs.all_changed_files }}'
run: echo '${{ steps.changed-files.outputs.all_changed_files }}' >> "$GITHUB_OUTPUT"

- name: Set example_changed
id: set-example-changed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-leptos-changed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
server_fn_macro
- name: List source files that changed
run: echo '${{ steps.changed-source.outputs.all_changed_files }}'
run: echo '${{ steps.changed-source.outputs.all_changed_files }}' >> "$GITHUB_OUTPUT"

- name: Set leptos_changed
id: set-source-changed
Expand Down

0 comments on commit dc05d93

Please sign in to comment.