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

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# Used in Doxyfile: PROJECT_NUMBER = $(UPA_DOCS_VERSION)
UPA_DOCS_VERSION: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Check C++ examples in documentation
- name: Extract and try to build C++ examples from docs
Expand All @@ -41,7 +41,7 @@ jobs:
run: echo "upa_checkout=$(git ls-remote --heads https://github.com/$upa_docs_repository.git refs/heads/gh-pages)" >> "$GITHUB_ENV"

- name: Checkout ${{ env.upa_docs_repository }}
uses: actions/checkout@v6
uses: actions/checkout@v7
if: env.upa_deploy && env.upa_checkout
with:
repository: ${{ env.upa_docs_repository }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Amalgamate source files
run: tools/amalgamate.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cmake_options: "-DCMAKE_EXPORT_COMPILE_COMMANDS=ON"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: apt-get install
if: ${{ matrix.install }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run:
shell: cpa.sh {0}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Start VM
uses: cross-platform-actions/action@v1.2.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cmake_options: "-DBUILD_SHARED_LIBS=ON"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get dependencies
run: ./init.sh
- name: cmake
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ jobs:
before_cmake: tools/amalgamate.sh

steps:
- uses: actions/checkout@v6
- name: apt-get install
if: ${{ matrix.install }}
run: |
sudo apt-get update
sudo apt-get install -y ${{ matrix.install }}
- uses: actions/checkout@v7
- name: get dependencies
run: ./init.sh
- name: before cmake
Expand Down Expand Up @@ -141,9 +141,9 @@ jobs:
- name: install
if: ${{ matrix.install_script }}
run: ${{ matrix.install_script }}
- uses: actions/checkout@v6
- uses: lukka/get-cmake@v4.3.4
if: ${{ matrix.install_cmake }}
- uses: actions/checkout@v7
- name: get dependencies
run: |
git config --global --add safe.directory $(pwd)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
cmake_options: "-T ClangCL"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get dependencies
run: init.bat
shell: cmd
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
cmake_options: "-DCMAKE_CXX_COMPILER=g++ -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get dependencies
run: init.bat
shell: cmd
Expand Down
Loading