Skip to content

Commit 0e7f552

Browse files
committed
Fix
Signed-off-by: chez-shanpu <tomoki.sugiura@mail.shanpu.info>
1 parent 5acd4de commit 0e7f552

File tree

12 files changed

+13
-70
lines changed

12 files changed

+13
-70
lines changed

.github/workflows/ansible-scheduled.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
ANSIBLE_FORCE_COLOR: 1
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- name: Run make
1717
run: make
1818
- name: Idempotence Test
@@ -23,7 +23,7 @@ jobs:
2323
|| (echo 'Idempotence test: fail' && exit 1)
2424
- name: Archive Idempotence Test output
2525
if: always()
26-
uses: actions/upload-artifact@v2
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: idempotence-out
2929
path: idempotence-out.txt

.github/workflows/ansible.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ANSIBLE_FORCE_COLOR: 1
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020
- name: Run make
2121
run: make
2222
- name: Idempotence Test
@@ -27,7 +27,7 @@ jobs:
2727
|| (echo 'Idempotence test: fail' && exit 1)
2828
- name: Archive Idempotence Test output
2929
if: always()
30-
uses: actions/upload-artifact@v2
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: idempotence-out
3333
path: idempotence-out.txt

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ endif
1818

1919
brew-Darwin:
2020
ifeq (, $(shell which brew))
21-
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh | /bin/bash
21+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
2222
else
2323
@echo "homebrew is already exits."
2424
endif

dev-provisioning.yaml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
- hosts: localhost
33
strategy: linear
44
roles:
5-
- name: common
6-
tags: common
5+
- name: tools
6+
tags: tools
77

88
- name: mac
99
tags: mac
@@ -15,9 +15,6 @@
1515
- name: fish
1616
tags: fish
1717

18-
- name: anyenv
19-
tags: anyenv
20-
2118
- name: c
2219
tags: c
2320

@@ -30,18 +27,12 @@
3027
- name: go
3128
tags: go
3229

33-
- name: hyper-terminal
34-
tags: hyper-terminal
35-
3630
- name: kubernetes
3731
tags: kubernetes
3832

3933
- name: neovim
4034
tags: neovim
4135

42-
- name: python
43-
tags: python
44-
4536
- name: tex
4637
tags: tex
4738

group_vars/all.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
github_user: chez-shanpu
22
ghq_root: '{{ lookup("env","HOME") }}/ghq'
3-
repos_root: '{{ ghq_root }}/github.com/{{ github_user }}'
4-
dotfiles_path: '{{ repos_root }}/dotfiles'
3+
repos_root: '{{ ghq_root }}/github.com/{{ github_user }}'

roles/anyenv/tasks/main.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

roles/hyper-terminal/tasks/debian.yaml

Lines changed: 0 additions & 20 deletions
This file was deleted.

roles/hyper-terminal/tasks/main.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

roles/python/tasks/main.yaml

Lines changed: 0 additions & 10 deletions
This file was deleted.

roles/common/tasks/darwin.yaml renamed to roles/tools/tasks/darwin.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919
- 'curl'
2020
- 'direnv'
2121
- 'duf'
22-
- 'exa'
22+
- 'eza'
2323
- 'fd'
24+
- 'fzf'
2425
- 'gh'
2526
- 'ghq'
2627
- 'git-delta'
@@ -32,6 +33,7 @@
3233
- 'peco'
3334
- 'pipenv'
3435
- 'procs'
36+
- 'ripgrep'
3537
- 'trash'
3638
- 'tree'
3739
- 'translate-shell'
@@ -44,8 +46,8 @@
4446
- 'alfred'
4547
- 'bitwarden'
4648
- 'dropbox'
47-
- 'fig'
4849
- 'gitify'
50+
- 'ghostty'
4951
- 'iterm2'
5052
- 'jetbrains-toolbox'
5153
- 'karabiner-elements'

0 commit comments

Comments
 (0)