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
11 changes: 7 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Integration Tests

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

on:
push:
branches:
Expand All @@ -21,10 +24,10 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25.x'

Expand All @@ -39,10 +42,10 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25.x'

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/macos-dispatch.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: macOS Manual Integration

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

on:
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -28,12 +31,12 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ inputs.branch }}

- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25.x'

Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Release

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

on:
push:
tags:
Expand Down Expand Up @@ -58,13 +61,13 @@ jobs:
suffix: darwin-arm64
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ needs.resolve.outputs.ref }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
Expand All @@ -82,7 +85,7 @@ jobs:
go build -trimpath -ldflags="-s -w" -o "$out" .

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bootstrap_environment-${{ matrix.suffix }}
path: dist/bootstrap_environment-${{ matrix.suffix }}
Expand All @@ -94,13 +97,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ needs.resolve.outputs.ref }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: dist
pattern: bootstrap_environment-*
Expand All @@ -114,7 +117,7 @@ jobs:
cat SHA256SUMS

- name: Create release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ needs.resolve.outputs.tag }}
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Unit Tests

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

on:
pull_request:
branches:
Expand All @@ -13,10 +16,10 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25.x'

Expand Down
Loading