diff --git a/.dockerignore b/.dockerignore index 1f89afb..6ebf81e 100644 --- a/.dockerignore +++ b/.dockerignore @@ -8,11 +8,18 @@ web-vault *.md *.txt -# Other +# IDE files +.vscode +.idea +*.iml + +# Environment files .env +.build_env + +# Other .github Makefile -.vscode # Release files *.tar.gz diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..3d036b8 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,3 @@ +/.github @dani-garcia @BlackDex +/.github/CODEOWNERS @dani-garcia @BlackDex +/.github/workflows/** @dani-garcia @BlackDex diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dffd084..667fc1c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: HAVE_GHCR_LOGIN: ${{ vars.GHCR_REPO != '' && github.repository_owner != '' && secrets.GITHUB_TOKEN != '' }} steps: - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 # Determine Docker Tag - name: Init Variables @@ -64,7 +64,7 @@ jobs: | tee -a "${GITHUB_ENV}" - name: Build and push - uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445 # v6.5.0 + uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0 with: context: . push: true diff --git a/.gitignore b/.gitignore index c015c05..5137943 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,17 @@ # Local build artifacts -builds/ -docker_builds/ -container_builds/ -web-vault/ +builds +docker_builds +container_builds +web-vault -# Other +# IDE files +.vscode +.idea +*.iml + +# Environment files .env .build_env -.vscode # Release files *.tar.gz diff --git a/patches/v2023.1.0.patch b/patches/legacy/v2023.1.0.patch similarity index 100% rename from patches/v2023.1.0.patch rename to patches/legacy/v2023.1.0.patch diff --git a/patches/v2023.1.1.patch b/patches/legacy/v2023.1.1.patch similarity index 100% rename from patches/v2023.1.1.patch rename to patches/legacy/v2023.1.1.patch diff --git a/patches/v2023.10.0.patch b/patches/legacy/v2023.10.0.patch similarity index 100% rename from patches/v2023.10.0.patch rename to patches/legacy/v2023.10.0.patch diff --git a/patches/v2023.12.0.patch b/patches/legacy/v2023.12.0.patch similarity index 100% rename from patches/v2023.12.0.patch rename to patches/legacy/v2023.12.0.patch diff --git a/patches/v2023.2.0.patch b/patches/legacy/v2023.2.0.patch similarity index 100% rename from patches/v2023.2.0.patch rename to patches/legacy/v2023.2.0.patch diff --git a/patches/v2023.3.0.patch b/patches/legacy/v2023.3.0.patch similarity index 100% rename from patches/v2023.3.0.patch rename to patches/legacy/v2023.3.0.patch diff --git a/patches/v2023.4.0.patch b/patches/legacy/v2023.4.0.patch similarity index 100% rename from patches/v2023.4.0.patch rename to patches/legacy/v2023.4.0.patch diff --git a/patches/v2023.5.0.patch b/patches/legacy/v2023.5.0.patch similarity index 100% rename from patches/v2023.5.0.patch rename to patches/legacy/v2023.5.0.patch diff --git a/patches/v2023.5.1.patch b/patches/legacy/v2023.5.1.patch similarity index 100% rename from patches/v2023.5.1.patch rename to patches/legacy/v2023.5.1.patch diff --git a/patches/v2023.7.1.patch b/patches/legacy/v2023.7.1.patch similarity index 100% rename from patches/v2023.7.1.patch rename to patches/legacy/v2023.7.1.patch diff --git a/patches/v2023.8.2.patch b/patches/legacy/v2023.8.2.patch similarity index 100% rename from patches/v2023.8.2.patch rename to patches/legacy/v2023.8.2.patch diff --git a/patches/v2023.9.1.patch b/patches/legacy/v2023.9.1.patch similarity index 100% rename from patches/v2023.9.1.patch rename to patches/legacy/v2023.9.1.patch