Skip to content

Commit a806d74

Browse files
committed
Update Dependencies
1 parent 1be61cc commit a806d74

10 files changed

Lines changed: 384 additions & 346 deletions

File tree

.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/backup/dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
./ "${{ env.SSH_USER }}"@"${{ env.SSH_HOST }}":"${{ env.SSH_DEST }}"
103103
104104
- name: "Send Discord Notification"
105-
uses: sarisia/actions-status-discord@v1
105+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
106106
with:
107107
webhook: ${{ secrets.DISCORD_WEBHOOK }}
108108
description: "https://dev-static.cssnr.com/"

.github/backup/pages.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ jobs:
6161

6262
- name: "Send Failure Notification"
6363
if: ${{ failure() }}
64-
uses: sarisia/actions-status-discord@v1
64+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
6565
with:
6666
webhook: ${{ secrets.DISCORD_WEBHOOK }}
67+
description: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
6768

6869
deploy:
6970
name: "Deploy"
@@ -87,7 +88,7 @@ jobs:
8788
- name: "Send Deploy Notification"
8889
if: ${{ !cancelled() }}
8990
continue-on-error: true
90-
uses: sarisia/actions-status-discord@v1
91+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
9192
with:
9293
webhook: ${{ secrets.DISCORD_WEBHOOK }}
9394
description: ${{ steps.deployment.outputs.page_url }}
@@ -116,7 +117,7 @@ jobs:
116117

117118
- name: "Send Post-Deploy Notification"
118119
if: ${{ failure() }}
119-
uses: sarisia/actions-status-discord@v1
120+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
120121
with:
121122
webhook: ${{ secrets.DISCORD_WEBHOOK }}
122-
description: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}
123+
description: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

.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/workflows/pages.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: "Send Deploy Notification"
5454
if: ${{ !cancelled() }}
5555
continue-on-error: true
56-
uses: sarisia/actions-status-discord@v1
56+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
5757
with:
5858
webhook: ${{ secrets.DISCORD_WEBHOOK }}
5959
description: ${{ steps.deployment.outputs.page_url }}
@@ -82,7 +82,7 @@ jobs:
8282

8383
- name: "Send Discord Notification"
8484
if: ${{ failure() }}
85-
uses: sarisia/actions-status-discord@v1
85+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
8686
with:
8787
webhook: ${{ secrets.DISCORD_WEBHOOK }}
88-
description: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}
88+
description: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

.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

.prettierignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
.idea/
2-
.vscode/
3-
dist/
4-
node_modules/
1+
.github/pull_request_template.md
52
package-lock.json

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/portainer-stack-deploy-docs/github-pages?logo=github&label=deploy)](https://github.com/cssnr/portainer-stack-deploy-docs/deployments)
2-
[![GitHub Pages](https://img.shields.io/github/actions/workflow/status/cssnr/portainer-stack-deploy-docs/pages.yaml?logo=cachet&label=pages)](https://github.com/cssnr/portainer-stack-deploy-docs/actions/workflows/pages.yaml)
3-
[![GitHub Lint](https://img.shields.io/github/actions/workflow/status/cssnr/portainer-stack-deploy-docs/lint.yaml?logo=cachet&label=lint)](https://github.com/cssnr/portainer-stack-deploy-docs/actions/workflows/lint.yaml)
4-
[![GitHub Last Commit](https://img.shields.io/github/last-commit/cssnr/portainer-stack-deploy-docs?logo=vitepress&logoColor=white&label=updated)](https://github.com/cssnr/portainer-stack-deploy-docs/pulse)
5-
[![GitHub Contributors](https://img.shields.io/github/contributors/cssnr/portainer-stack-deploy-docs?logo=github)](https://github.com/cssnr/portainer-stack-deploy-docs/graphs/contributors)
6-
[![GitHub Repo Size](https://img.shields.io/github/repo-size/cssnr/portainer-stack-deploy-docs?logo=bookstack&logoColor=white&label=repo%20size)](https://github.com/cssnr/portainer-stack-deploy-docs)
7-
[![GitHub Discussions](https://img.shields.io/github/discussions/cssnr/portainer-stack-deploy-action?logo=github)](https://github.com/cssnr/portainer-stack-deploy-action/discussions)
8-
[![GitHub Repo Stars](https://img.shields.io/github/stars/cssnr/portainer-stack-deploy-action?style=flat&logo=github)](https://github.com/cssnr/portainer-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/portainer-stack-deploy-docs/github-pages?logo=vitepress&logoColor=white&label=deploy)](https://github.com/cssnr/portainer-stack-deploy-docs/deployments)
2+
[![Workflow Pages](https://img.shields.io/github/actions/workflow/status/cssnr/portainer-stack-deploy-docs/pages.yaml?logo=testcafe&logoColor=white&label=pages)](https://github.com/cssnr/portainer-stack-deploy-docs/actions/workflows/pages.yaml)
3+
[![Workflow Lint](https://img.shields.io/github/actions/workflow/status/cssnr/portainer-stack-deploy-docs/lint.yaml?logo=testcafe&logoColor=white&label=lint)](https://github.com/cssnr/portainer-stack-deploy-docs/actions/workflows/lint.yaml)
4+
[![GitHub Last Commit](https://img.shields.io/github/last-commit/cssnr/portainer-stack-deploy-docs?logo=listenhub&label=updated)](https://github.com/cssnr/portainer-stack-deploy-docs/pulse)
5+
[![GitHub Repo Size](https://img.shields.io/github/repo-size/cssnr/portainer-stack-deploy-docs?logo=buffer&label=repo%20size)](https://github.com/cssnr/portainer-stack-deploy-docs?tab=readme-ov-file#readme)
6+
[![GitHub Top Language](https://img.shields.io/github/languages/top/cssnr/portainer-stack-deploy-docs?logo=devbox)](https://github.com/cssnr/portainer-stack-deploy-docs?tab=readme-ov-file#readme)
7+
[![GitHub Contributors](https://img.shields.io/github/contributors-anon/cssnr/portainer-stack-deploy-docs?logo=southwestairlines)](https://github.com/cssnr/portainer-stack-deploy-docs/graphs/contributors)
8+
[![GitHub Issues](https://img.shields.io/github/issues/cssnr/portainer-stack-deploy-docs?logo=codeforces&logoColor=white)](https://github.com/cssnr/portainer-stack-deploy-docs/issues)
9+
[![GitHub Discussions](https://img.shields.io/github/discussions/cssnr/portainer-stack-deploy-docs?logo=theconversation)](https://github.com/cssnr/portainer-stack-deploy-docs/discussions)
10+
[![GitHub Forks](https://img.shields.io/github/forks/cssnr/portainer-stack-deploy-docs?style=flat&logo=forgejo&logoColor=white)](https://github.com/cssnr/portainer-stack-deploy-docs/forks)
11+
[![GitHub Repo Stars](https://img.shields.io/github/stars/cssnr/portainer-stack-deploy-docs?style=flat&logo=gleam&logoColor=white)](https://github.com/cssnr/portainer-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)