Skip to content

Commit

Permalink
Merge pull request #301 from yin1999/ci-bump
Browse files Browse the repository at this point in the history
ci: bump the version of actions/setup-go and actions/checkout
  • Loading branch information
otiai10 authored Jan 20, 2024
2 parents f395c8b + a09f470 commit c9cfa46
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
name: macOS Go${{ matrix.go }} on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Install tesseract
Expand All @@ -36,9 +36,9 @@ jobs:
needs: macos
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: '1.18'
- name: Install packages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/runtime-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
name: Docker ${{ matrix.runtime }}
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: ${{ matrix.runtime }}
shell: 'script -q -e -c "bash {0}"'
run: bash ./test/runtime --driver docker --build --run ${{ matrix.runtime }}
Expand All @@ -36,7 +36,7 @@ jobs:
name: Test Dockerfile on the repo root
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: docker build . -t otiai10/gosseract
- name: Test Run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runtime-vagrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
name: Vagrant ${{ matrix.runtime }}
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: ${{ matrix.runtime }}
run: bash ./test/runtime --driver vagrant --build --run ${{ matrix.runtime }}
4 changes: 2 additions & 2 deletions .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
name: Windows Test
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Install Tesseract
Expand Down

0 comments on commit c9cfa46

Please sign in to comment.