Skip to content

Commit fc0dd11

Browse files
authored
Merge branch 'main' into mh-remove-screenshot
2 parents ef27d92 + 1bbcb18 commit fc0dd11

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141

4242
- name: Install clang-format
4343
run: |
@@ -59,7 +59,7 @@ jobs:
5959

6060
steps:
6161
- name: Checkout repository
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363

6464
- name: Set up Bazel
6565
uses: bazel-contrib/[email protected]

.github/workflows/citation-updater.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ jobs:
5555
steps:
5656
- if: ${{!env.version_tag || !env.pub_date}}
5757
name: Quit if the release tag or publication date is empty
58-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
58+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v7
5959
with:
6060
script: |
6161
core.setFailed('The release version and/or date could not be read')
6262
6363
- name: Check out a copy of the git repository
64-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
64+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
6565

6666
- name: Verify that this repo has a CITATION.cff file
6767
id: check
@@ -71,7 +71,7 @@ jobs:
7171
7272
- if: steps.check.outputs.has_cff_file == 'false'
7373
name: Quit if there is no CITATION.cff file
74-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
74+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v7
7575
with:
7676
script: |
7777
core.setFailed('Could not find a CITATION.cff file')
@@ -103,7 +103,7 @@ jobs:
103103
104104
- if: steps.update.outputs.success == 'false'
105105
name: Quit if CITATION.cff update failed
106-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
106+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v7
107107
with:
108108
script: |
109109
core.setFailed('CITATION.cff update failed or the file is not valid')

.github/workflows/prerelease.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
create_version:
2727
runs-on: ubuntu-24.04
2828
steps:
29-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
30-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
29+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4
30+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
3131
with:
3232
python-version: '3.10'
3333
- name: Create version
@@ -49,9 +49,9 @@ jobs:
4949
os: [ubuntu-22.04, ubuntu-24.04, macos-14]
5050
python-version: ['3.10', '3.11', '3.12', '3.13']
5151
steps:
52-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
52+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4
5353
- name: Set up Python
54-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
54+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757

@@ -84,7 +84,7 @@ jobs:
8484
sed "s/^MANYLINUX_VERSION.*/MANYLINUX_VERSION=\"manylinux_${GLIBC_VERSION}_x86_64.manylinux2014_x86_64\"/" BUILD -i || true
8585
bazel build --define GLIBC_VERSION=$GLIBC_VERSION --define TARGET_VERSION="$(python -c "print(\"py${TARGET_PYTHON}\".replace(\".\", \"\"))")" --define VERSION="$(cat version/version.txt)" :tesseract_decoder_wheel
8686
87-
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
87+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
8888
with:
8989
name: python-wheels-${{ matrix.os }}-${{ matrix.python-version }}
9090
path: ./bazel-bin/*.whl
@@ -103,7 +103,7 @@ jobs:
103103
path: wheelhouse/
104104

105105
- name: Publish package to testpypi
106-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
106+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
107107
with:
108108
repository_url: https://test.pypi.org/legacy/
109109
user: __token__
@@ -113,7 +113,7 @@ jobs:
113113

114114

115115
- name: Publish package to pypi
116-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
116+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
117117
with:
118118
user: __token__
119119
password: ${{ secrets.PYPI_TOKEN }}

.github/workflows/stable-release-workflow.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
create_version:
2626
runs-on: ubuntu-24.04
2727
steps:
28-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
29-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
28+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4
29+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
3030
with:
3131
python-version: '3.10'
3232
- name: Create version
@@ -49,9 +49,9 @@ jobs:
4949
python-version: ['3.10', '3.11', '3.12', '3.13']
5050

5151
steps:
52-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
52+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4
5353
- name: Set up Python
54-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
54+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757

@@ -84,7 +84,7 @@ jobs:
8484
sed "s/^MANYLINUX_VERSION.*/MANYLINUX_VERSION=\"manylinux_${GLIBC_VERSION}_x86_64.manylinux2014_x86_64\"/" BUILD -i || true
8585
bazel build --define TARGET_VERSION="$(python -c "print(\"py${TARGET_PYTHON}\".replace(\".\", \"\"))")" --define VERSION="$(cat version/version.txt)" :tesseract_decoder_wheel
8686
87-
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
87+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
8888
with:
8989
name: python-wheels-${{ matrix.os }}-${{ matrix.python-version }}
9090
path: ./bazel-bin/*.whl
@@ -103,7 +103,7 @@ jobs:
103103
path: wheelhouse/
104104

105105
- name: Publish package to testpypi
106-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
106+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
107107
with:
108108
repository_url: https://test.pypi.org/legacy/
109109
user: __token__
@@ -112,7 +112,7 @@ jobs:
112112
verbose: true
113113

114114
- name: Publish package to pypi
115-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
115+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
116116
with:
117117
user: __token__
118118
password: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)