diff --git a/.github/workflows/chart-testing.yaml b/.github/workflows/chart-testing.yaml index c581dc6..d0cad1f 100644 --- a/.github/workflows/chart-testing.yaml +++ b/.github/workflows/chart-testing.yaml @@ -7,21 +7,19 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Helm - uses: azure/setup-helm@v1 - with: - version: v3.9.2 + uses: azure/setup-helm@v3 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v5 with: - python-version: 3.7 + python-version: 3.11 - name: Set up chart-testing - uses: helm/chart-testing-action@v2.3.0 + uses: helm/chart-testing-action@v2.6.1 - name: Run chart-testing (list-changed) id: list-changed @@ -35,7 +33,7 @@ jobs: run: ct lint --config ct.yaml - name: Create kind cluster - uses: helm/kind-action@v1.2.0 + uses: helm/kind-action@v1.8.0 if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ccb6ffa..7b7ab90 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Configure Git @@ -21,10 +21,9 @@ jobs: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - name: Install Helm uses: azure/setup-helm@v1 - with: - version: v3.8.1 + - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.4.0 + uses: helm/chart-releaser-action@v1 env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" with: diff --git a/charts/wg-access-server/Chart.yaml b/charts/wg-access-server/Chart.yaml index 52016da..4605e53 100644 --- a/charts/wg-access-server/Chart.yaml +++ b/charts/wg-access-server/Chart.yaml @@ -1,6 +1,5 @@ apiVersion: v2 -appVersion: v0.10.1 +appVersion: v0.11.0 description: A WireGuard VPN Access Server name: wg-access-server -version: 0.12.1 - +version: 0.12.2 diff --git a/charts/wg-access-server/values.yaml b/charts/wg-access-server/values.yaml index 361b38b..c8cea0a 100644 --- a/charts/wg-access-server/values.yaml +++ b/charts/wg-access-server/values.yaml @@ -14,7 +14,7 @@ config: # Enable/disable the embedded DNS proxy server. This is enabled by default and allows VPN clients to avoid DNS leaks by sending all DNS requests to wg-access-server itself. enabled: true # The upstream DNS servers to proxy DNS requests to. By default the host machine's resolveconf configuration is used to find its upstream DNS server, with a fallback to Cloudflare. - #upstream: resolvconf + # upstream: resolvconf # A domain to serve configured devices authoritatively. Queries for names in the format .. will be answered with the device's IP addresses. domain: wireguard: diff --git a/ct.yaml b/ct.yaml index fc2d61c..3410b56 100644 --- a/ct.yaml +++ b/ct.yaml @@ -2,5 +2,4 @@ remote: origin target-branch: main chart-dirs: - charts -helm-extra-args: --timeout 600s validate-maintainers: false