Skip to content

Commit 03f8c0d

Browse files
authored
Merge pull request #215 from MerginMaps/dependabot/github_actions/dot-github/workflows/actions/download-artifact-4.1.7
Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows
2 parents 8e05f38 + 4db056d commit 03f8c0d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/python_packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build sdist
2222
run: python setup.py sdist
2323

24-
- uses: actions/upload-artifact@v2
24+
- uses: actions/upload-artifact@v4
2525
with:
2626
path: dist/*.tar.gz
2727

@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
3232
steps:
33-
- uses: actions/download-artifact@v2
33+
- uses: actions/download-artifact@v4.1.7
3434
with:
3535
name: artifact
3636
path: dist

mergin/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,7 @@ def reset(ctx):
661661
except Exception as e:
662662
_print_unhandled_exception()
663663

664+
664665
@cli.command()
665666
@click.argument("project")
666667
@click.option("--json", is_flag=True, default=False, help="Output in JSON format")
@@ -680,7 +681,7 @@ def list_files(ctx, project, json):
680681
else:
681682
click.echo("Fetched {} files .".format(len(project_files)))
682683
for file in project_files:
683-
click.echo(" {:40}\t{:6.1f} MB".format(file['path'], file["size"] / (1024 * 1024)))
684+
click.echo(" {:40}\t{:6.1f} MB".format(file["path"], file["size"] / (1024 * 1024)))
684685

685686

686687
if __name__ == "__main__":

0 commit comments

Comments
 (0)