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
28 changes: 14 additions & 14 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
- uses: flowexec/action@v1
with:
executable: 'lint go'
Expand All @@ -37,11 +37,11 @@ jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
- uses: flowexec/action@v1
with:
executable: 'test unit'
Expand All @@ -58,11 +58,11 @@ jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
- uses: flowexec/action@v1
with:
executable: 'test e2e'
Expand All @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Download unit test coverage
uses: actions/download-artifact@v8
with:
Expand All @@ -94,7 +94,7 @@ jobs:
with:
name: e2e-coverage
- name: Upload to codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand All @@ -104,11 +104,11 @@ jobs:
validate-generated:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
- name: Install mockgen
run: go install go.uber.org/mock/mockgen@v0.4.0
- uses: flowexec/action@v1
Expand All @@ -129,11 +129,11 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
- uses: flowexec/action@v1
with:
executable: 'build binary'
Expand All @@ -148,11 +148,11 @@ jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
- uses: flowexec/action@v1
with:
executable: 'scan security'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Test container build
uses: flowexec/action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
release-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
packages: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'test:windows')
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
cache: true
- name: Run unit tests
uses: flowexec/action@v1
Expand All @@ -47,11 +47,11 @@ jobs:
github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'test:windows')
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
cache: true
- name: Run E2E tests
uses: flowexec/action@v1
Expand All @@ -77,11 +77,11 @@ jobs:
github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'test:windows')
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
cache: true
- name: Build flow binary
uses: flowexec/action@v1
Expand All @@ -101,11 +101,11 @@ jobs:
runs-on: windows-latest
needs: build-binary
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
cache: true
- name: Download built binary
uses: actions/download-artifact@v8
Expand All @@ -126,11 +126,11 @@ jobs:
github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'test:windows')
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
go-version: "1.25.x"
cache: true
- name: Run .bat and .ps1 file execution tests
uses: flowexec/action@v1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.26.1-bookworm
FROM golang:1.26.4-bookworm

ENV DISABLE_FLOW_INTERACTIVE="true"

Expand Down
Loading
Loading