Skip to content

Commit

Permalink
Replace deprecated uses of set-output.
Browse files Browse the repository at this point in the history
  • Loading branch information
philr committed Oct 21, 2022
1 parent a75e9bd commit 4f73b2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ jobs:
- run: bundle --version
- id: determine_tzdata_version
name: Determine tzdata version
run: echo "::set-output name=tzdata_version::`ruby -r bundler/setup -r tzinfo/data -e 'puts TZInfo::Data::Version::TZDATA'`"
run: echo "tzdata_version=`ruby -r bundler/setup -r tzinfo/data -e 'puts TZInfo::Data::Version::TZDATA'`" >> $GITHUB_OUTPUT
- id: determine_os_version
name: Determine OS version
run: |
echo "::set-output name=os::`lsb_release -si`"
echo "::set-output name=os_version::`lsb_release -sr`"
echo "os=`lsb_release -si`" >> $GITHUB_OUTPUT
echo "os_version=`lsb_release -sr`" >> $GITHUB_OUTPUT
- name: Cache tzdb
uses: actions/cache@v3
with:
Expand Down

0 comments on commit 4f73b2a

Please sign in to comment.