diff --git a/.github/labeler.yml b/.github/labeler.yml index a2b37705..08a74c18 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -12,7 +12,8 @@ chore: documentation: - head-branch: ['^docs/', '^doc/'] - - changed-files: '**/*.md' + - changed-files: + - any-glob-to-any-file: '**/*.md' dependencies: - head-branch: ['^deps/', '^dep/', '^dependabot/', 'pre-commit-ci-update-config'] @@ -20,6 +21,8 @@ dependencies: tests: - any: - head-branch: ['^tests/', '^test/'] - - changed-files: ['test/**/*'] + - changed-files: + - any-glob-to-any-file: 'test/**/*' - all: - - changed-files: ['!test/requirements.txt'] + - changed-files: + - all-globs-to-all-files: '!test/requirements.txt' diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 9937cb32..6d49e4cd 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -12,6 +12,10 @@ jobs: pull-requests: write runs-on: ubuntu-22.04 steps: + - name: Checkout Repository + uses: actions/checkout@v4 + - uses: actions/labeler@v5 + continue-on-error: true with: repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/Dockerfile b/Dockerfile index 5a297084..c5f0ee4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN xx-apt install -y xx-cxx-essentials zlib1g-dev libcurl4-openssl-dev libc-are ### Build base image for alpine -FROM --platform=$BUILDPLATFORM alpine:3.18 as build-base-alpine +FROM --platform=$BUILDPLATFORM alpine:3.19 as build-base-alpine RUN apk add --no-cache \ alpine-sdk \