hashicorp / go-getter

Package for downloading things from a string URL using a variety of protocols.
Mozilla Public License 2.0
1.65k stars 232 forks source link

Replace deprecated ioutil. #455

Open tristanmorgan opened 1 year ago

tristanmorgan commented 1 year ago

Backport of #451, replaces deprecated io/ioutil package usage.

angrycub commented 5 months ago

Everyplace where we used ioutil.TempDir in tests could possibly be better served with testing's t.TempDir function, since it will clean them up automatically.

tristanmorgan commented 5 months ago

Hi @angrycub, I have updated the branch to change tests to use t.TempDir() now.