diff options
author | Matt Schatz <genius3000@g3k.solutions> | 2020-10-14 20:45:59 -0600 |
---|---|---|
committer | Matt Schatz <genius3000@g3k.solutions> | 2020-10-14 21:22:43 -0600 |
commit | ff88faf931e390e30a994b69fff1ce17bf134029 (patch) | |
tree | 0b829e38379cae11d84a80afe94043a8f67c6277 /.github/workflows | |
parent | b54ad75f2222811257bafa944e1c44bb81740c4a (diff) |
Switch away from the deprecated 'set-env' command.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/misspell-fixer.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/misspell-fixer.yml b/.github/workflows/misspell-fixer.yml index 15663604e..7e8330fec 100644 --- a/.github/workflows/misspell-fixer.yml +++ b/.github/workflows/misspell-fixer.yml @@ -12,8 +12,8 @@ jobs: - uses: actions/checkout@v2 - name : Set a couple env variables run: | - echo "::set-env name=DATE::$(date +'%Y-%m-%d')" - echo "::set-env name=REF_BRANCH::${REF_BRANCH//refs\/heads\//}" + echo "DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV + echo "REF_BRANCH=${REF_BRANCH//refs\/heads\//}" >> $GITHUB_ENV - name: Whitelist some directories and files run: | echo "\ |