Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@ on:

jobs:
actionlint:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run ActionLint
uses: reviewdog/action-actionlint@v1
shellcheck:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
uses: ludeeus/action-shellcheck@2.0.0
with:
ignore_paths: ./zsh/zshrc ./zsh/p10k.zsh
env:
SHELLCHECK_OPTS: -e SC1071 -e SC1091
markdownlint:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -41,7 +41,7 @@ jobs:
reporter: github-pr-review

hadolint:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ USER test

COPY --chown=test:test . /home/test/dotfiles

ENV USER test
ENV USER=test

ENV PATH="/home/test/bin:${PATH}"

Expand Down
2 changes: 0 additions & 2 deletions git/gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,3 @@
prompt = false
[rerere]
enabled = 1
[credential]
helper = "!f() { /home/test/.vscode-server/bin/3b889b090b5ad5793f524b5d1d39fda662b96a2a/node /tmp/vscode-remote-containers-285323e1229e86d5f4e0810389874cf9b3b1786d.js $*; }; f"
Loading