Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added workflow to update asdf tools #65

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
28 changes: 28 additions & 0 deletions .github/workflows/update-tool-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Tooling

on:
schedule:
- cron: "0 0 * * MON"
workflow_dispatch: ~
pull_request:
branches:
- master

env:
ASDF_DEFAULT_TOOL_VERSIONS_FILENAME: asdf/tool-versions

jobs:
tooling:
name: Update tooling
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Update tooling
uses: ericcornelissen/tool-versions-update-action/commit@v0
with:
not: powershell-core, broot, lazydocker
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
empty
6 changes: 3 additions & 3 deletions asdf/tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ dotnet 6.0.408
nodejs 16.19.0
powershell-core 7.3.0
tflint 0.46.1
broot 1.22.1
# broot 1.22.1
poetry 1.2.2
k9s 0.26.7
glow 1.5.0
glow 1.5.1
stylua 0.17.1
lazygit 0.38.2
lazydocker 0.20.0
# lazydocker 0.20.0
editorconfig-checker 2.7.0
actionlint 1.6.24
hadolint 2.12.0
Expand Down
Loading