Skip to content

Releases: teddyking/dependency-action

v2.0.0

04 Mar 09:18
Compare
Choose a tag to compare

This release adds support for .tar.xz files.

Currently supported formats:

  • .tar.gz, .tgz
  • .tar.xz, .txz

There is a breaking change from v1.0.0 in that the input has been renamed from tgzDeps to simply deps:

    - name: Download test dependencies
      uses: teddyking/dependency-action@master
      with:
        deps: https://dep1.tar.gz,https://dep2.txz

It should now also be much easier to add support for additional filetypes in the future (PRs welcome!).

v1.0.0

12 Sep 12:08
Compare
Choose a tag to compare

Download and extract dependencies required by workflow jobs!

Currently supported formats:

  • .tar.gz

Check the README.md for example usage.