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
20 changes: 10 additions & 10 deletions .github/workflows/docker-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: recursive

- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v4
id: setup-buildx

- uses: docker/login-action@v3
- uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand All @@ -31,7 +31,7 @@ jobs:
# same key prefix — letting build_prod restore what build_testnet
# just saved.
- name: Restore BuildKit cache mounts from Actions Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-mounts
with:
path: cache-mount
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
# build_testnet via needs:) can reuse the ccache populated by the
# testnet build. The two images differ only in CMake flags so most
# compiled object files have identical ccache hashes.
- uses: docker/build-push-action@v6
- uses: docker/build-push-action@v7
with:
context: .
file: ./share/vizd/docker/Dockerfile-testnet
Expand All @@ -78,14 +78,14 @@ jobs:
needs: build_testnet

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: recursive

- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v4
id: setup-buildx

- uses: docker/login-action@v3
- uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand All @@ -95,7 +95,7 @@ jobs:
# hashes). Apt content fully reusable; ccache reuse depends on how
# -DBUILD_TESTNET propagates through the build (measured per run).
- name: Restore BuildKit cache mounts from Actions Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-mounts
with:
path: cache-mount
Expand All @@ -119,7 +119,7 @@ jobs:
}
skip-extraction: ${{ steps.cache-mounts.outputs.cache-hit }}

- uses: docker/build-push-action@v6
- uses: docker/build-push-action@v7
with:
context: .
file: ./share/vizd/docker/Dockerfile-production
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker-pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: recursive

# setup-buildx-action is required for advanced cache features
# (cache-from / cache-to with type=gha and mode=max). The id: lets
# buildkit-cache-dance below pick up the builder name.
- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v4
id: setup-buildx

- uses: docker/login-action@v3
- uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand All @@ -47,7 +47,7 @@ jobs:
# buildkit-cache-dance binds it into the build's cache mounts and
# extracts the post-build state for the next save.
- name: Restore BuildKit cache mounts from Actions Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-mounts
with:
path: cache-mount
Expand All @@ -74,7 +74,7 @@ jobs:
# Layer cache scope is keyed on the PR's base branch so all PRs
# targeting master share one warm-cache pool, while PRs against
# release branches cannot poison master's cache.
- uses: docker/build-push-action@v6
- uses: docker/build-push-action@v7
with:
context: .
file: ./share/vizd/docker/Dockerfile-production
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20

- run: npm install --no-audit --no-fund

- run: npm run build

- uses: actions/upload-pages-artifact@v3
- uses: actions/upload-pages-artifact@v5
with:
path: dist

Expand All @@ -46,5 +46,5 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
- uses: actions/deploy-pages@v5
id: deployment
6 changes: 3 additions & 3 deletions .github/workflows/windows-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# 1. Checkout
# -------------------------------------------------------
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
# -------------------------------------------------------
- name: Cache Boost
id: cache-boost
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: C:\Boost
key: boost-1.86.0-mingw-ucrt64-static-v1
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
# -------------------------------------------------------
- name: Cache OpenSSL
id: cache-openssl
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: C:\OpenSSL
key: openssl-4.0.0-mingw-ucrt64-static-v1
Expand Down