Skip to content

Commit d3edd88

Browse files
Merge remote-tracking branch 'origin/master' into number_range_filter
2 parents 61f7484 + 4a0e252 commit d3edd88

File tree

86 files changed

+13385
-12665
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+13385
-12665
lines changed

.github/workflows/pull-request-update-or-push-tag.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
env:
1616
GIT_COMMIT_SHA: ${{ github.sha }}
17+
GIT_BRANCH: ${{ github.head_ref }}
1718
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_ID }}
1819
steps:
1920
- name: Checkout repository files
2021
uses: actions/checkout@v4
2122

22-
- name: Extract tag (release)
23-
if: ${{ github.event.ref != '' }}
24-
run: echo "GIT_BRANCH=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
25-
26-
- name: Extract tag (pull request)
27-
if: ${{ github.event.ref == '' }}
28-
run: echo "GIT_BRANCH=pr-${{ github.event.number }}" >> $GITHUB_ENV
29-
3023
- name: Install Code Climate Test Reporter
3124
run: |
3225
curl -Lo cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
@@ -118,19 +111,12 @@ jobs:
118111
- test
119112
env:
120113
GIT_COMMIT_SHA: ${{ github.sha }}
114+
GIT_BRANCH: ${{ github.head_ref }}
121115
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_ID }}
122116
steps:
123117
- name: Checkout repository files
124118
uses: actions/checkout@v4
125119

126-
- name: Extract tag (release)
127-
if: ${{ github.event.ref != '' }}
128-
run: echo "GIT_BRANCH=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
129-
130-
- name: Extract tag (pull request)
131-
if: ${{ github.event.ref == '' }}
132-
run: echo "GIT_BRANCH=pr-${{ github.event.number }}" >> $GITHUB_ENV
133-
134120
- name: Download coverage reports
135121
uses: actions/download-artifact@v4
136122
with:

build/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ COPY --from=base-with-dependencies /opt/app /opt/app
3535

3636
RUN apt-get update && apt-get install -y curl
3737
WORKDIR /tmp
38-
# 120.0.6099.224-1~deb11u1 -> 2024-02-01
39-
# 128.0.6613.113-1~deb12u1-> 2024-08-30
40-
ARG CHROMIUM_VERSION=128.0.6613.113-1~deb12u1
38+
# 128.0.6613.84-1~deb12u1 -> 2024-08-23
39+
ARG CHROMIUM_VERSION=128.0.6613.84-1~deb12u1
4140
RUN curl -o chromium-common.deb https://ftp.debian.org/debian/pool/main/c/chromium/chromium-common_${CHROMIUM_VERSION}_$(dpkg --print-architecture).deb
4241
RUN curl -o chromium.deb https://ftp.debian.org/debian/pool/main/c/chromium/chromium_${CHROMIUM_VERSION}_$(dpkg --print-architecture).deb
4342
RUN apt-get install -y ./chromium-common.deb ./chromium.deb build-essential git libssl-dev

0 commit comments

Comments
 (0)