Skip to content

Commit

Permalink
Merge pull request #97 from MobilityData/fix-gh-action-set-output-dep…
Browse files Browse the repository at this point in the history
…recation

Fix for deprecated of `set-output` in GH actions
  • Loading branch information
fredericsimard authored Sep 14, 2023
2 parents 68d916a + 7a35010 commit c20e380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/db-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:

- name: Get full path of sources.csv
id: getpath
run: echo "::set-output name=PATH::$(realpath sources.csv)"
run: echo "PATH=$(realpath sources.csv)" >> $GITHUB_OUTPUT

- name: Populate Database
if: inputs.RUN_POPULATE_SCRIPT
Expand Down

0 comments on commit c20e380

Please sign in to comment.