From 33ff8977779d72ebeb9729aab86335003c0cbc0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Apr 2024 10:22:36 +0000 Subject: [PATCH 1/2] Bump alpine from 3.18 to 3.19 Bumps alpine from 3.18 to 3.19. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \ From 2814ad95757c72c2afa609c2d0f5b719a3211bbe Mon Sep 17 00:00:00 2001 From: Michael Nikitochkin Date: Fri, 12 Apr 2024 12:31:12 +0200 Subject: [PATCH 2/2] Ignore labeler status --- .github/labeler.yml | 9 ++++++--- .github/workflows/labeler.yml | 4 ++++ 2 files changed, 10 insertions(+), 3 deletions(-) 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 }}"