Skip to content

Commit 69929a7

Browse files
authored
Merge branch 'main' into dependabot/pip/src/matplotlib-3.10.7
2 parents 649ae5a + aa9447c commit 69929a7

4 files changed

Lines changed: 22 additions & 22 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
43+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
4444

4545
- name: Install clang-format
4646
run: |
@@ -62,10 +62,10 @@ jobs:
6262

6363
steps:
6464
- name: Checkout repository
65-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
65+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
6666

6767
- name: Set up Bazel
68-
uses: bazel-contrib/setup-bazel@e8776f58fb6a6e9055cbaf1b38c52ccc5247e9c4 # 0.14.0
68+
uses: bazel-contrib/setup-bazel@43d7d5ceab59a307da44fc7585faa2a2fff4f88d # 0.16.0
6969
with:
7070
bazelisk-cache: true
7171
disk-cache: ${{ github.workflow }}

.github/workflows/citation-updater.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
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@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
64+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2
6565

6666
- name: Verify that this repo has a CITATION.cff file
6767
id: check

.github/workflows/prerelease.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ jobs:
2626
create_version:
2727
runs-on: ubuntu-24.04
2828
steps:
29-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4
30-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
29+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
30+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5
3131
with:
3232
python-version: '3.10'
3333
- name: Create version
3434
run: |
3535
mkdir version
3636
echo "$(python _version.py).dev$(date '+%Y%m%d%H%M%S')" > version/version.txt
3737
cat version/version.txt
38-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
38+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3939
with:
4040
name: version-file
4141
path: version
@@ -49,19 +49,19 @@ 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@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4
52+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
5353
- name: Set up Python
54-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
54+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757

58-
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
58+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
5959
with:
6060
name: version-file
6161
path: version
6262

6363
- name: Set up Bazel
64-
uses: bazel-contrib/setup-bazel@e8776f58fb6a6e9055cbaf1b38c52ccc5247e9c4 # 0.14.0
64+
uses: bazel-contrib/setup-bazel@43d7d5ceab59a307da44fc7585faa2a2fff4f88d # 0.16.0
6565
with:
6666
bazelisk-cache: true
6767
disk-cache: ${{ github.workflow }}
@@ -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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
87+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
8888
with:
8989
name: python-wheels-${{ matrix.os }}-${{ matrix.python-version }}
9090
path: ./bazel-bin/*.whl
@@ -96,7 +96,7 @@ jobs:
9696

9797
steps:
9898
- name: Download build artifacts
99-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
99+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
100100
with:
101101
pattern: python-wheels-*
102102
merge-multiple: true

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
create_version:
2626
runs-on: ubuntu-24.04
2727
steps:
28-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4
29-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5
28+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
29+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5
3030
with:
3131
python-version: '3.10'
3232
- name: Create version
3333
run: |
3434
mkdir version
3535
echo "$(python _version.py)" > version/version.txt
3636
cat version/version.txt
37-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
37+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3838
with:
3939
name: version-file
4040
path: version
@@ -49,19 +49,19 @@ jobs:
4949
python-version: ['3.10', '3.11', '3.12', '3.13']
5050

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

58-
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
58+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
5959
with:
6060
name: version-file
6161
path: version
6262

6363
- name: Set up Bazel
64-
uses: bazel-contrib/setup-bazel@e8776f58fb6a6e9055cbaf1b38c52ccc5247e9c4 # 0.14.0
64+
uses: bazel-contrib/setup-bazel@43d7d5ceab59a307da44fc7585faa2a2fff4f88d # 0.16.0
6565
with:
6666
bazelisk-cache: true
6767
disk-cache: ${{ github.workflow }}
@@ -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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
87+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
8888
with:
8989
name: python-wheels-${{ matrix.os }}-${{ matrix.python-version }}
9090
path: ./bazel-bin/*.whl
@@ -96,7 +96,7 @@ jobs:
9696

9797
steps:
9898
- name: Download build artifacts
99-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
99+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
100100
with:
101101
pattern: python-wheels-*
102102
merge-multiple: true

0 commit comments

Comments
 (0)