mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-21 13:51:05 -05:00
* #32 use new output env file https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ * bump checkout version
This commit is contained in:
parent
81e214fd48
commit
2576378a8e
3 changed files with 3 additions and 3 deletions
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -4,7 +4,7 @@ jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Get yamllint version
|
- name: Get yamllint version
|
||||||
run: yamllint --version
|
run: yamllint --version
|
||||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -9,5 +9,5 @@ jobs:
|
||||||
update-semver:
|
update-semver:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: haya14busa/action-update-semver@v1
|
- uses: haya14busa/action-update-semver@v1
|
||||||
|
|
|
@ -35,6 +35,6 @@ yamllint "${options[@]}" ${INPUT_FILE_OR_DIR:-.} | tee -a "$LOGFILE"
|
||||||
exitcode=$?
|
exitcode=$?
|
||||||
|
|
||||||
shopt -u globstar
|
shopt -u globstar
|
||||||
echo "::set-output name=logfile::$(realpath ${LOGFILE})"
|
echo "logfile=$(realpath ${LOGFILE})" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
exit $exitcode
|
exit $exitcode
|
||||||
|
|
Loading…
Reference in a new issue