Skip to content
Open
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/build-image-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Docker Buildx for multi-platform builds
uses: docker/setup-buildx-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-image-semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Docker Buildx for multi-platform builds
uses: docker/setup-buildx-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
echo "release=YES" >> $GITHUB_OUTPUT
echo "version_string=${{ github.ref_name }}" | sed -r 's/(=)v/\1/' >> $GITHUB_OUTPUT
fi
- uses: PowerDNS/pdns-publish-docs-action@v1.1.0
- uses: PowerDNS/pdns-publish-docs-action@v1.1.1
if: ${{ steps.release_check.outputs.release == 'YES' }} # Only build and push docs for releases
with:
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
runs-on: ubuntu-22.04
name: Go build (Linux)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.24'
check-latest: true

- name: Build (amd64)
run: GOOS=linux GOARCH=amd64 CGO_ENABLED=1 ./build.sh
- name: Upload binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: lightningstream_linux_amd64.bin
path: bin/lightningstream
Expand All @@ -38,25 +38,25 @@ jobs:
runs-on: macos-15
name: Go build (macOS)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.24'
check-latest: true

- name: Build (amd64)
run: GOOS=darwin GOARCH=amd64 CGO_ENABLED=1 ./build.sh
- name: Upload binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: lightningstream_darwin_amd64.bin
path: bin/lightningstream

- name: Build (arm64)
run: GOOS=darwin GOARCH=arm64 CGO_ENABLED=1 ./build.sh
- name: Upload binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: lightningstream_darwin_arm64.bin
path: bin/lightningstream
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:

name: Go ${{ matrix.go }} tests
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
steps:
- name: check-spelling
id: spelling
uses: check-spelling/check-spelling@v0.0.24
uses: check-spelling/check-spelling@v0.0.25
with:
suppress_push_for_open_pull_request: 1
checkout: true
Expand Down