mirror of
https://github.com/linuxserver/docker-code-server
synced 2025-06-26 18:27:40 +00:00
Compare commits
6 Commits
4.10.1-ls1
...
4.11.0-ls1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2a54204888 | ||
|
|
c8a2ba1566 | ||
|
|
ae51d14720 | ||
|
|
cb8df4d4ef | ||
|
|
8be39c9293 | ||
|
|
b83040e88f |
12
.github/workflows/call_invalid_helper.yml
vendored
12
.github/workflows/call_invalid_helper.yml
vendored
@@ -1,12 +0,0 @@
|
||||
name: Comment on invalid interaction
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- labeled
|
||||
jobs:
|
||||
add-comment-on-invalid:
|
||||
if: github.event.label.name == 'invalid'
|
||||
permissions:
|
||||
issues: write
|
||||
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
|
||||
secrets: inherit
|
||||
14
.github/workflows/call_issue_pr_tracker.yml
vendored
Executable file
14
.github/workflows/call_issue_pr_tracker.yml
vendored
Executable file
@@ -0,0 +1,14 @@
|
||||
name: Issue & PR Tracker
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [opened,reopened,labeled,unlabeled]
|
||||
pull_request_target:
|
||||
types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled]
|
||||
|
||||
jobs:
|
||||
manage-project:
|
||||
permissions:
|
||||
issues: write
|
||||
uses: linuxserver/github-workflows/.github/workflows/issue-pr-tracker.yml@v1
|
||||
secrets: inherit
|
||||
13
.github/workflows/call_issues_cron.yml
vendored
Executable file
13
.github/workflows/call_issues_cron.yml
vendored
Executable file
@@ -0,0 +1,13 @@
|
||||
name: Mark stale issues and pull requests
|
||||
on:
|
||||
schedule:
|
||||
- cron: '31 1 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
uses: linuxserver/github-workflows/.github/workflows/issues-cron.yml@v1
|
||||
secrets: inherit
|
||||
@@ -2,7 +2,7 @@ name: Package Trigger Scheduler
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '00 12 * * 0'
|
||||
- cron: '0 20 * * 6'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
3
.github/workflows/permissions.yml
vendored
3
.github/workflows/permissions.yml
vendored
@@ -1,9 +1,10 @@
|
||||
name: Permission check
|
||||
on:
|
||||
pull_request:
|
||||
pull_request_target:
|
||||
paths:
|
||||
- '**/run'
|
||||
- '**/finish'
|
||||
- '**/check'
|
||||
jobs:
|
||||
permission_check:
|
||||
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
|
||||
|
||||
23
.github/workflows/stale.yml
vendored
23
.github/workflows/stale.yml
vendored
@@ -1,23 +0,0 @@
|
||||
name: Mark stale issues and pull requests
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "30 1 * * *"
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/stale@v6.0.1
|
||||
with:
|
||||
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
|
||||
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
|
||||
stale-issue-label: 'no-issue-activity'
|
||||
stale-pr-label: 'no-pr-activity'
|
||||
days-before-stale: 30
|
||||
days-before-close: 365
|
||||
exempt-issue-labels: 'awaiting-approval,work-in-progress'
|
||||
exempt-pr-labels: 'awaiting-approval,work-in-progress'
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
23
Jenkinsfile
vendored
23
Jenkinsfile
vendored
@@ -56,7 +56,7 @@ pipeline {
|
||||
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT
|
||||
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/'
|
||||
env.PULL_REQUEST = env.CHANGE_ID
|
||||
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/call_invalid_helper.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
|
||||
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
|
||||
}
|
||||
script{
|
||||
env.LS_RELEASE_NUMBER = sh(
|
||||
@@ -230,17 +230,14 @@ pipeline {
|
||||
}
|
||||
sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-shellcheck/master/checkrun.sh | /bin/bash'''
|
||||
sh '''#! /bin/bash
|
||||
set -e
|
||||
docker pull ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest
|
||||
docker run --rm \
|
||||
-e DESTINATION=\"${IMAGE}/${META_TAG}/shellcheck-result.xml\" \
|
||||
-e FILE_NAME="shellcheck-result.xml" \
|
||||
-e MIMETYPE="text/xml" \
|
||||
-v ${WORKSPACE}:/mnt \
|
||||
-e SECRET_KEY=\"${S3_SECRET}\" \
|
||||
-e ACCESS_KEY=\"${S3_KEY}\" \
|
||||
-t ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest \
|
||||
python /upload.py'''
|
||||
-v ${WORKSPACE}:/mnt \
|
||||
-e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \
|
||||
-e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \
|
||||
ghcr.io/linuxserver/baseimage-alpine:3.17 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\
|
||||
apk add --no-cache py3-pip && \
|
||||
pip install s3cmd && \
|
||||
s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci-tests.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :'''
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -277,7 +274,7 @@ pipeline {
|
||||
echo "Jenkinsfile is up to date."
|
||||
fi
|
||||
# Stage 2 - Delete old templates
|
||||
OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md\n.github/ISSUE_TEMPLATE/issue.bug.md\n.github/ISSUE_TEMPLATE/issue.feature.md"
|
||||
OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml"
|
||||
for i in ${OLD_TEMPLATES}; do
|
||||
if [[ -f "${i}" ]]; then
|
||||
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
|
||||
@@ -294,7 +291,7 @@ pipeline {
|
||||
git commit -m 'Bot Updating Templated Files'
|
||||
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
|
||||
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
|
||||
echo "Deleting old templates"
|
||||
echo "Deleting old and deprecated templates"
|
||||
rm -Rf ${TEMPDIR}
|
||||
exit 0
|
||||
else
|
||||
|
||||
@@ -90,7 +90,7 @@ chownr 2.0.0
|
||||
cliui 7.0.4 npm
|
||||
clojure 1.0.0 npm
|
||||
code-point-at 1.1.0 npm
|
||||
code-server 4.10.1 npm
|
||||
code-server 4.11.0 npm
|
||||
coffeescript 1.0.0 npm
|
||||
color-convert 2.0.1 npm
|
||||
color-name 1.1.4 npm
|
||||
@@ -113,7 +113,7 @@ crypt 0.0.2
|
||||
csharp 1.0.0 npm
|
||||
css 1.0.0 npm
|
||||
css-language-features 1.0.0 npm
|
||||
curl 7.81.0-1ubuntu1.8 deb
|
||||
curl 7.81.0-1ubuntu1.10 deb
|
||||
dart 1.0.0 npm
|
||||
dash 0.5.11+git20210903+057cd650a4ed-3build1 deb
|
||||
data-uri-to-buffer 3.0.1 npm
|
||||
@@ -268,7 +268,7 @@ jake 1.0.0
|
||||
java 1.0.0 npm
|
||||
javascript 1.0.0 npm
|
||||
jq 1.6-2.1ubuntu3 deb
|
||||
js-debug 1.75.1 npm
|
||||
js-debug 1.76.0 npm
|
||||
js-debug-companion 1.0.18 npm
|
||||
js-yaml 4.1.0 npm
|
||||
jschardet 3.0.0 npm
|
||||
@@ -303,8 +303,8 @@ libcap2 1:2.44-1build3
|
||||
libcbor0.8 0.8.0-2ubuntu1 deb
|
||||
libcom-err2 1.46.5-2ubuntu1.1 deb
|
||||
libcrypt1 1:4.4.27-1 deb
|
||||
libcurl3-gnutls 7.81.0-1ubuntu1.8 deb
|
||||
libcurl4 7.81.0-1ubuntu1.8 deb
|
||||
libcurl3-gnutls 7.81.0-1ubuntu1.10 deb
|
||||
libcurl4 7.81.0-1ubuntu1.10 deb
|
||||
libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb
|
||||
libdebconfclient0 0.261ubuntu1 deb
|
||||
libedit2 3.1-20210910-1build1 deb
|
||||
@@ -318,7 +318,7 @@ libgcrypt20 1.9.4-3ubuntu3
|
||||
libgdbm-compat4 1.23-1 deb
|
||||
libgdbm6 1.23-1 deb
|
||||
libgmp10 2:6.2.1+dfsg-3ubuntu1 deb
|
||||
libgnutls30 3.7.3-4ubuntu1.1 deb
|
||||
libgnutls30 3.7.3-4ubuntu1.2 deb
|
||||
libgpg-error0 1.43-3 deb
|
||||
libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb
|
||||
libhogweed6 3.7.3-1build2 deb
|
||||
@@ -329,8 +329,8 @@ libkeyutils1 1.6.1-2ubuntu3
|
||||
libkrb5-3 1.19.2-2ubuntu0.1 deb
|
||||
libkrb5support0 1.19.2-2ubuntu0.1 deb
|
||||
libksba8 1.6.0-2ubuntu0.2 deb
|
||||
libldap-2.5-0 2.5.13+dfsg-0ubuntu0.22.04.1 deb
|
||||
libldap-common 2.5.13+dfsg-0ubuntu0.22.04.1 deb
|
||||
libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb
|
||||
libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb
|
||||
liblz4-1 1.9.3-2build2 deb
|
||||
liblzma5 5.2.5-2ubuntu1 deb
|
||||
libmd0 1.0.4-1build1 deb
|
||||
@@ -368,12 +368,12 @@ libss2 1.46.5-2ubuntu1.1
|
||||
libssh-4 0.9.6-2build1 deb
|
||||
libssl3 3.0.2-0ubuntu1.8 deb
|
||||
libstdc++6 12.1.0-2ubuntu1~22.04 deb
|
||||
libsystemd0 249.11-0ubuntu3.6 deb
|
||||
libsystemd0 249.11-0ubuntu3.7 deb
|
||||
libtasn1-6 4.18.0-4build1 deb
|
||||
libtinfo6 6.3-2 deb
|
||||
libtirpc-common 1.3.2-2ubuntu0.1 deb
|
||||
libtirpc3 1.3.2-2ubuntu0.1 deb
|
||||
libudev1 249.11-0ubuntu3.6 deb
|
||||
libudev1 249.11-0ubuntu3.7 deb
|
||||
libunistring2 1.0-1 deb
|
||||
libuuid1 2.37.2-4ubuntu3 deb
|
||||
libx11-6 2:1.7.5-1 deb
|
||||
@@ -448,7 +448,7 @@ node-fetch 2.6.7
|
||||
node-forge 1.3.1 npm
|
||||
node-forge-flash 0.0.0 npm
|
||||
node-gyp-build 4.3.0 npm
|
||||
node-pty 0.11.0-beta27 npm
|
||||
node-pty 0.11.0-beta29 npm
|
||||
nopt 5.0.0 npm
|
||||
npm 1.0.1 npm
|
||||
npmlog 4.1.2 npm
|
||||
@@ -510,7 +510,7 @@ rc 1.2.8
|
||||
readable-stream 1.1.14 npm
|
||||
readable-stream 2.3.7 npm
|
||||
readable-stream 3.6.0 npm
|
||||
readable-stream 3.6.1 npm
|
||||
readable-stream 3.6.2 npm
|
||||
readline-common 8.1.2-1 deb
|
||||
references-view 1.0.0 npm
|
||||
regenerator-runtime 0.13.11 npm
|
||||
@@ -573,7 +573,7 @@ stubs 3.0.0
|
||||
sudo 1.9.9-1ubuntu2.3 deb
|
||||
swift 1.0.0 npm
|
||||
sysvinit-utils 3.01-1ubuntu1 deb
|
||||
tar 1.34+dfsg-1build3 deb
|
||||
tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb
|
||||
tar 6.1.11 npm
|
||||
tar-fs 2.1.1 npm
|
||||
tar-stream 2.2.0 npm
|
||||
@@ -617,12 +617,12 @@ vscode-extensions 0.0.1
|
||||
vscode-html-languageserver 1.0.0 npm
|
||||
vscode-js-profile-table 1.0.3 npm
|
||||
vscode-json-languageserver 1.3.4 npm
|
||||
vscode-markdown-languageserver 0.2.0 npm
|
||||
vscode-markdown-languageserver 0.3.0-alpha.4 npm
|
||||
vscode-oniguruma 1.7.0 npm
|
||||
vscode-proxy-agent 0.12.0 npm
|
||||
vscode-regexpp 3.1.0 npm
|
||||
vscode-reh 1.75.1 npm
|
||||
vscode-textmate 8.0.0 npm
|
||||
vscode-reh 1.76.1 npm
|
||||
vscode-textmate 9.0.0 npm
|
||||
vscode-theme-seti 1.0.0 npm
|
||||
webidl-conversions 3.0.1 npm
|
||||
whatwg-url 5.0.0 npm
|
||||
@@ -636,13 +636,13 @@ xauth 1:1.1-1build2
|
||||
xdg-basedir 4.0.0 npm
|
||||
xml 1.0.0 npm
|
||||
xregexp 2.0.0 npm
|
||||
xterm 5.2.0-beta.21 npm
|
||||
xterm 5.2.0-beta.29 npm
|
||||
xterm-addon-canvas 0.4.0-beta.7 npm
|
||||
xterm-addon-search 0.11.0 npm
|
||||
xterm-addon-serialize 0.9.0 npm
|
||||
xterm-addon-unicode11 0.5.0 npm
|
||||
xterm-addon-webgl 0.15.0-beta.4 npm
|
||||
xterm-headless 5.2.0-beta.21 npm
|
||||
xterm-addon-webgl 0.15.0-beta.7 npm
|
||||
xterm-headless 5.2.0-beta.29 npm
|
||||
y18n 5.0.8 npm
|
||||
yallist 3.1.1 npm
|
||||
yallist 4.0.0 npm
|
||||
|
||||
Reference in New Issue
Block a user