Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y libsnappy-dev libzzip-dev zlib1g-dev libboost-all-dev doxygen
- name: checkout from git
uses: actions/checkout@v4
uses: actions/checkout@v5

# re-use the cache from the linux build
- name: ccache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/keyvi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
brew install zlib snappy [email protected]
brew link [email protected]
- name: checkout from git
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
#- os: macos-13
# flavor: pypy
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: ccache
uses: hendrikmuhs/[email protected]
with:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
name: sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: install Linux deps
run: |
sudo apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-dockerimages-cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
base_image: [many, musl]
os: [ubuntu-24.04, ubuntu-24.04-arm]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
if: github.event_name == 'push'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install system packages
run: |
sudo apt-get update
Expand All @@ -32,7 +32,7 @@ jobs:
env:
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install system packages
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # fetch all history so multiple commits can be scanned
- name: install deps
Expand Down
Loading