Skip to content

Commit 72adae4

Browse files
committed
Update Dependencies
1 parent 7fa7dcc commit 72adae4

File tree

7 files changed

+404
-555
lines changed

7 files changed

+404
-555
lines changed

.github/actionlint.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
paths:
2+
.github/workflows/**/*.{yml,yaml}:
3+
ignore:
4+
- '"inputs" section is alias node but mapping node is expected'
5+
- '"paths" section must be sequence node but got alias node with "" tag'
6+
- '"paths-ignore" section must be sequence node but got alias node with "" tag'

.github/workflows/lint.yaml

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -52,28 +52,16 @@ jobs:
5252
run: |
5353
npm run prettier:check
5454
55-
- name: "Yamllint"
55+
- name: "yamllint"
5656
if: ${{ !cancelled() }}
5757
env:
58-
CONFIG: "{extends: relaxed, ignore: [node_modules/], rules: {line-length: {max: 119}}}"
58+
CONFIG: .github/yamllint.yaml
5959
run: |
6060
echo "::group::List Files"
61-
yamllint -d '${{ env.CONFIG }}' --list-files .
61+
yamllint -c "${{ env.CONFIG }}" --list-files .
6262
echo "::endgroup::"
63-
yamllint -d '${{ env.CONFIG }}' .
63+
yamllint -c "${{ env.CONFIG }}" .
6464
65-
- name: "Actionlint"
65+
- name: "actionlint"
6666
if: ${{ !cancelled() }}
67-
run: |
68-
echo "::group::Download"
69-
loc=$(curl -sI https://github.com/rhysd/actionlint/releases/latest | grep -i '^location:')
70-
echo "loc: ${loc}"
71-
tag=$(echo "${loc}" | sed -E 's|.*/tag/v?(.*)|\1|' | tr -d '\t\r\n')
72-
echo "tag: ${tag}"
73-
url="https://github.com/rhysd/actionlint/releases/latest/download/actionlint_${tag}_linux_amd64.tar.gz"
74-
echo "url: ${url}"
75-
curl -sL "${url}" | tar xz -C "${RUNNER_TEMP}" actionlint
76-
file "${RUNNER_TEMP}/actionlint"
77-
"${RUNNER_TEMP}/actionlint" --version
78-
echo "::endgroup::"
79-
"${RUNNER_TEMP}/actionlint" -color -verbose -shellcheck= -pyflakes=
67+
uses: cssnr/actionlint-action@v1

.github/yamllint.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
extends: relaxed
2+
3+
ignore-from-file: .gitignore
4+
5+
rules:
6+
line-length:
7+
max: 119

.vitepress/vars.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,21 @@ export const repos = [
5050
['goldor8/custom-docker-compose-ssh-deployment'],
5151
['manugame/custom-docker-compose-ssh-deployment'],
5252
['hamidfzm/docker-remote-deployment-action'],
53-
['PetrosyanDev/docker-stack-deploy'],
5453
['dombyte/docker-deploy'],
55-
['PetrosyanDev/github-actions-docker-swarm-env'],
5654
['hantastic3/ssh-deploy-action'],
55+
['PetrosyanDev/docker-stack-deploy'],
56+
['PetrosyanDev/github-actions-docker-swarm-env'],
57+
['anilrajrimal1/ecr-docker-ssh-deployer'],
5758
['medram/stack-deploy-action'],
5859
['revelhome/stack-deploy-action'],
5960
['jrm402/docker-stack-deploy'],
6061
['sklimaszewski/dokploy-deploy-image-action'],
6162
['modcraftmc/custom-docker-compose-ssh-deployment'],
62-
['anilrajrimal1/ecr-docker-ssh-deployer'],
6363
['tristiisch/docker-stack-deployment'],
6464
['sovarto/deploy-swarm-service'],
6565
['leonidgrishenkov/docker-stack-deploy'],
6666
['xfathurrahman/tailscale-stack-deploy-action'],
6767
['harrisonratcliffe/github-action-docker-swarm-deploy'],
6868
['qdrx/stack-deploy-action'],
69-
['deriannavy/docker-context-action'],
7069
['Autom3/docker-deployment-action'],
7170
]

README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
[![GitHub Deployments](https://img.shields.io/github/deployments/cssnr/stack-deploy-docs/github-pages?logo=github&label=deploy)](https://github.com/cssnr/stack-deploy-docs/deployments)
2-
[![GitHub Pages](https://img.shields.io/github/actions/workflow/status/cssnr/stack-deploy-docs/pages.yaml?logo=cachet&label=pages)](https://github.com/cssnr/stack-deploy-docs/actions/workflows/pages.yaml)
3-
[![GitHub Lint](https://img.shields.io/github/actions/workflow/status/cssnr/stack-deploy-docs/lint.yaml?logo=cachet&label=lint)](https://github.com/cssnr/stack-deploy-docs/actions/workflows/lint.yaml)
4-
[![GitHub Last Commit](https://img.shields.io/github/last-commit/cssnr/stack-deploy-docs?logo=vitepress&logoColor=white&label=updated)](https://github.com/cssnr/stack-deploy-docs/pulse)
5-
[![GitHub Contributors](https://img.shields.io/github/contributors-anon/cssnr/stack-deploy-docs?logo=github)](https://github.com/cssnr/stack-deploy-docs/graphs/contributors)
6-
[![GitHub Repo Size](https://img.shields.io/github/repo-size/cssnr/stack-deploy-docs?logo=bookstack&logoColor=white&label=repo%20size)](https://github.com/cssnr/stack-deploy-docs)
7-
[![GitHub Discussions](https://img.shields.io/github/discussions/cssnr/stack-deploy-action?logo=github)](https://github.com/cssnr/stack-deploy-action/discussions)
8-
[![GitHub Repo Stars](https://img.shields.io/github/stars/cssnr/stack-deploy-action?style=flat&logo=github)](https://github.com/cssnr/stack-deploy-action)
9-
[![GitHub Org Stars](https://img.shields.io/github/stars/cssnr?style=flat&logo=github&label=org%20stars)](https://cssnr.github.io/)
1+
[![Deployment Pages](https://img.shields.io/github/deployments/cssnr/stack-deploy-docs/github-pages?logo=vitepress&logoColor=white&label=deploy)](https://github.com/cssnr/stack-deploy-docs/deployments)
2+
[![Workflow Pages](https://img.shields.io/github/actions/workflow/status/cssnr/stack-deploy-docs/pages.yaml?logo=testcafe&logoColor=white&label=pages)](https://github.com/cssnr/stack-deploy-docs/actions/workflows/pages.yaml)
3+
[![Workflow Lint](https://img.shields.io/github/actions/workflow/status/cssnr/stack-deploy-docs/lint.yaml?logo=testcafe&logoColor=white&label=lint)](https://github.com/cssnr/stack-deploy-docs/actions/workflows/lint.yaml)
4+
[![GitHub Last Commit](https://img.shields.io/github/last-commit/cssnr/stack-deploy-docs?logo=listenhub&label=updated)](https://github.com/cssnr/stack-deploy-docs/pulse)
5+
[![GitHub Repo Size](https://img.shields.io/github/repo-size/cssnr/stack-deploy-docs?logo=buffer&label=repo%20size)](https://github.com/cssnr/stack-deploy-docs?tab=readme-ov-file#readme)
6+
[![GitHub Top Language](https://img.shields.io/github/languages/top/cssnr/stack-deploy-docs?logo=devbox)](https://github.com/cssnr/stack-deploy-docs?tab=readme-ov-file#readme)
7+
[![GitHub Contributors](https://img.shields.io/github/contributors-anon/cssnr/stack-deploy-docs?logo=southwestairlines)](https://github.com/cssnr/stack-deploy-docs/graphs/contributors)
8+
[![GitHub Issues](https://img.shields.io/github/issues/cssnr/stack-deploy-docs?logo=codeforces&logoColor=white)](https://github.com/cssnr/stack-deploy-docs/issues)
9+
[![GitHub Discussions](https://img.shields.io/github/discussions/cssnr/stack-deploy-docs?logo=theconversation)](https://github.com/cssnr/stack-deploy-docs/discussions)
10+
[![GitHub Forks](https://img.shields.io/github/forks/cssnr/stack-deploy-docs?style=flat&logo=forgejo&logoColor=white)](https://github.com/cssnr/stack-deploy-docs/forks)
11+
[![GitHub Repo Stars](https://img.shields.io/github/stars/cssnr/stack-deploy-docs?style=flat&logo=gleam&logoColor=white)](https://github.com/cssnr/stack-deploy-docs/stargazers)
12+
[![GitHub Org Stars](https://img.shields.io/github/stars/cssnr?style=flat&logo=apachespark&logoColor=white&label=org%20stars)](https://cssnr.github.io/)
1013
[![Discord](https://img.shields.io/discord/899171661457293343?logo=discord&logoColor=white&label=discord&color=7289da)](https://discord.gg/wXy6m2X8wY)
1114
[![Ko-fi](https://img.shields.io/badge/Ko--fi-72a5f2?logo=kofi&label=support)](https://ko-fi.com/cssnr)
1215

0 commit comments

Comments
 (0)