Releases: digitalocean/action-doctl
v2.5.1
What's Changed
- Update to node 20 by @fabianbru in #82
New Contributors
- @fabianbru made their first contribution in #82
Full Changelog: v2.5.0...v2.5.1
v2.5.0
What's Changed
- Add no_auth option (Fixes #67) by @trinitronx in #79
New Contributors
- @trinitronx made their first contribution in #79
Full Changelog: v2.4.1...v2.5.0
v2.4.1
What's Changed
- Use process over os for backwards compatibility. by @andrewsomething in #77
Full Changelog: v2.4.0...v2.4.1
v2.4.0
What's Changed
- Switch from @zeit/ncc to @vercel/ncc by @andrewsomething in #73
- Bump semver from 5.7.1 to 5.7.2 by @dependabot in #70
- Bump minimatch from 3.0.4 to 3.1.2 by @dependabot in #68
- Bump word-wrap from 1.2.3 to 1.2.5 by @dependabot in #75
- Support non-amd64 architechtures. by @andrewsomething in #74
Full Changelog: v2.3.0...v2.4.0
V2.3.0
v2.2.0
What's Changed
- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in #59
- Bump ansi-regex from 4.1.0 to 4.1.1 by @dependabot in #60
- Bump fallback version to most recent release. by @andrewsomething in #61
- Bump @actions/core from 1.2.6 to 1.9.1 by @dependabot in #62
- Upgrade to Node 16 by @Sumolari in #64
- Bump fallback doctl version to 1.84.0. by @andrewsomething in #65
New Contributors
Full Changelog: v2.1.1...v2.2.0
v2.1.1
What's Changed
- Bump lodash from 4.17.19 to 4.17.21 by @dependabot in #47
- Bump glob-parent from 5.1.1 to 5.1.2 by @dependabot in #48
- Update broken readme link by @chris72205 in #49
- Add links to instructions for getting an API token and setting up secrets (fixes: #53). by @andrewsomething in #54
- Edited README.md to get rid of spelling errors. by @Infiniti20 in #55
- Bump ajv from 6.12.0 to 6.12.6 by @dependabot in #57
- Bump node-fetch from 2.6.1 to 2.6.7 by @dependabot in #58
New Contributors
- @chris72205 made their first contribution in #49
- @Infiniti20 made their first contribution in #55
Full Changelog: v2.1.0...v2.1.1
v2.1.0
- #36 - @teimurjan - Refactor downloadDoctl function
- #37 - @andrewsomething - Use pull_request_target rather than pull_request in workflow.
- #35 - @dependabot[bot] - Bump @actions/core from 1.2.4 to 1.2.6
- #33 - @dependabot[bot] - Bump node-fetch from 2.6.0 to 2.6.1
- #32 - @dependabot[bot] - Bump lodash from 4.17.15 to 4.17.19
- #31 - @andrewsomething - Update dependencies.
v2.0.0
News
digitalocean/action-doctl
was first written back when GitHub Actions was still in its beta phase. v2 brings an important change to how this action works making its user experience a better fit for how GitHub Actions has evolved. When using v2, doctl
will be installed in the shared runner's PATH allowing it to be used directly.
For example, to save a kubeconfig file, you would now run:
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Save DigitalOcean kubeconfig
run: doctl kubernetes cluster kubeconfig save testing-cluster
For more details about why we've made this change, see the RFC: #27
Backwards Compatibility
In order to not break existing users, you will need to explicitly opt-in to these changes by using digitalocean/action-doctl@v2
.
v2 is now the default branch for this repository. digitalocean/action-doctl@master
is now deprecated, but it will remain available and maintain its current behavior for the foreseeable future.
v1.8.0 Release
- Update doctl version to 1.39.0