Skip to content

Commit

Permalink
Replace usage of deprecated set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronwhite committed Sep 22, 2024
1 parent d74ad54 commit 250ca6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Version number
id: version
run: echo "::set-output name=VERSION_ID::$(git describe --tags --long --always)"
run: echo "VERSION_ID=$(git describe --tags --long --always)" >> $GITHUB_OUTPUT

- name: Install Dependencies
# Note: remove existing Github actions python to work around conflicts (https://github.com/actions/setup-python/issues/577)
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Version number
id: version
run: echo "::set-output name=VERSION_ID::$(git describe --tags --long --always)"
run: echo "VERSION_ID=$(git describe --tags --long --always)" >> $GITHUB_OUTPUT

- name: Install Dependencies
run: vcpkg install --triplet x64-windows boost-algorithm boost-date-time boost-endian boost-functional boost-iostreams boost-rational boost-signals2 boost-stacktrace doctest minizip nlohmann-json pugixml
Expand Down

0 comments on commit 250ca6a

Please sign in to comment.