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/abi-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: checkout project
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: build and install JsonCpp (C++${{ matrix.jsoncpp_std }})
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amalgamate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: checkout project
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: setup python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- 'example'
- 'include'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: runs clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.13.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: checkout project
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: build project
uses: threeal/cmake-action@v2.0.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: setup python
uses: actions/setup-python@v5
Expand All @@ -42,7 +42,7 @@ jobs:

steps:
- name: checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: setup python
uses: actions/setup-python@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-project-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
pull-requests: write
steps:
- name: checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: update project files
run: |
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
fi

- name: create pull request
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore: bump version to ${{ github.event.inputs.target_version }}"
Expand Down
Loading