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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
debug-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: TopoToolbox/actions/checkout@main
with:
submodules: true
- name: Install OpenMP
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
run: ctest --test-dir ${{github.workspace}}/build/debug -C Debug --output-on-failure
- name: Upload test snapshot artifacts
if: ${{ !cancelled() }}
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: TopoToolbox/actions/upload-artifact@main
with:
name: snapshot_test_output
path: ${{github.workspace}}/build/debug/test/snapshots/
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- os: ubuntu-latest
c_compiler: cl
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: TopoToolbox/actions/checkout@main
with:
submodules: true
- name: Install OpenMP on Ubuntu
Expand All @@ -101,7 +101,7 @@ jobs:
## TODO: Install GDAL on Windows and macos
- name: Restore snapshot data cache
id: restore-cache-snapshots-release
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
uses: TopoToolbox/actions/cache@main
with:
path: ${{github.workspace}}/test/snapshots
key: snapshots-${{ env.snapshot_version }}
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Build shared library
run: cmake --build ${{github.workspace}}/build/shared --config Release
- name: Upload build artifacts
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: TopoToolbox/actions/upload-artifact@main
with:
name: ${{matrix.os}}_${{matrix.c_compiler}}_cmake_profiles
path: ${{matrix.os}}_${{matrix.c_compiler}}_config_profile.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
uses: TopoToolbox/actions/checkout@main
- name: Install doxygen
run: |
sudo apt update
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/build --target docs
- name: Package artifact
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
uses: TopoToolbox/actions/upload-pages-artifact@main
with:
path: ${{github.workspace}}/build/docs/docs/sphinx
deploy:
Expand All @@ -39,4 +39,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0
uses: TopoToolbox/actions/deploy-pages@main
4 changes: 2 additions & 2 deletions .github/workflows/metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
chmod 600 ~/.ssh/id_metrics
chmod 700 ~/.ssh
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
uses: TopoToolbox/actions/checkout@main
- name: Cache snapshot data snapshot data cache
id: cache-snapshots
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
uses: TopoToolbox/actions/cache@main
with:
path: test/snapshots
key: snapshots-${{ env.snapshot_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: TopoToolbox/actions/checkout@main
- name: Generate tag
run: echo "TAG=$(date -u +%Y-W%W)" >> $GITHUB_ENV
- run: 'echo "TAG: $TAG"'
Expand Down
Loading