Skip to content

Commit

Permalink
Update several GitHub actions
Browse files Browse the repository at this point in the history
The old versions cause a warning:

    Node.js 16 actions are deprecated.
    Please update the following actions to use Node.js 20:
    actions/checkout@v3, actions/setup-python@v4.

For more information see:
https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.

Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Mar 18, 2024
1 parent f35a4fd commit 6ddf302
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/makeall-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
PYTHON_VERSION: ${{ matrix.python-version }}

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
# architecture: x64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/makedocker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Remove Docker images
run: |
df -h
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
make ocrd-all-tool.json
wc -l ocrd-all-tool.json
- name: Upload ocrd-all-tool.json
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.inputs.docker-image }}_ocrd-all-tool.json
path: ./ocrd-all-tool.json
Expand Down

0 comments on commit 6ddf302

Please sign in to comment.