Skip to content

Commit

Permalink
fix: actions set output deprecation warning
Browse files Browse the repository at this point in the history
Fixes `The set-output command is deprecated and will be disabled soon`

https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
  • Loading branch information
rumblefrog committed Mar 13, 2023
1 parent a2fd5b0 commit 047c881
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 113 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ See [action.yml](https://github.com/rumblefrog/setup-sp/blob/master/action.yml)

```yaml
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- uses: rumblefrog/setup-sp@master
with:
version: '1.10.x'
version: '1.12.x'

- run: spcomp -iAnotherIncludeDirectory plugin.sp -o output/plugin.smx
```
Expand All @@ -29,11 +29,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
sm-version: [ '1.10.x', '1.11.x', '1.11.6467', '>= 1.11.6478']
sm-version: [ '1.11.x', '1.12.x', '1.11.6467', '>= 1.11.6478']

name: SM version ${{ matrix.sm-version }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Setup SP
uses: rumblefrog/setup-sp@master
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit 047c881

Please sign in to comment.