Skip to content

Commit

Permalink
marshall booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Mar 1, 2024
1 parent 88e4d4d commit 0cbe9ab
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-hatch/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
working-directory: ${{ inputs.working-dir }}

- name: "Upload artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.archive-name}}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/publish-results/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
shell: bash

- name: "Publish test results to archive"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.file-name }}_python-${{ inputs.python-version }}_${{ steps.timestamp.outputs.ts }}.csv
path: ${{ inputs.source-file }}
2 changes: 1 addition & 1 deletion .github/actions/setup-hatch/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
using: composite
steps:
- name: "Set up Python ${{ inputs.python-version }}"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
# this step is only needed for the release process
- name: "Upload Build Artifact"
if: ${{ github.event_name == 'workflow_call' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.version.outputs.version_number }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,19 +85,19 @@ jobs:
if test "${{ inputs.package }}" = "dbt-tests-adapter"
then
working_dir="./dbt-tests-adapter"
working_dir="./dbt-tests-adapter/"
run_unit_tests=false
fi
echo "working-dir=$working_dir" >> $GITHUB_OUTPUT
echo "run-unit-tests=$run_unit_tests" >> $GITHUB_OUTPUT
echo "run-unit-tests=toJSON($run_unit_tests)" >> $GITHUB_OUTPUT
echo "archive-name=$archive_name" >> $GITHUB_OUTPUT
- name: "[DEBUG]"
run: |
echo package : ${{ inputs.package }}
echo working-dir : ${{ steps.release-inputs.outputs.working-dir }}
echo run-unit-tests : ${{ steps.release-inputs.outputs.run-unit-tests }}
echo run-unit-tests : ${{ fromJSON(steps.release-inputs.outputs.run-unit-tests) }}
echo archive-name : ${{ steps.release-inputs.outputs.archive-name }}
bump-version-generate-changelog:
Expand All @@ -111,7 +111,7 @@ jobs:
nightly_release: ${{ inputs.nightly_release }}
target_branch: ${{ inputs.target_branch }}
working-dir: ${{ needs.release-inputs.outputs.working-dir }}
run-unit-tests: ${{ needs.release-inputs.outputs.run-unit-tests }}
run-unit-tests: ${{ fromJSON(needs.release-inputs.outputs.run-unit-tests) }}
secrets: inherit

bump-version-generate-changelog-debug:
Expand Down

0 comments on commit 0cbe9ab

Please sign in to comment.