Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ jobs:
run: nix develop --accept-flake-config --command make build

- name: Upload Test Coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage
path: coverage.txt

- name: Upload Fuzz Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: fuzz-results
path: testdata/fuzz
10 changes: 5 additions & 5 deletions .github/workflows/deploy-pages.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ jobs:

- name: Setup Go (if go.mod present)
if: ${{ hashFiles('go.mod') != '' }}
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true

- name: Setup Python (if pyproject.toml or requirements*.txt present)
if: ${{ hashFiles('pyproject.toml') != '' || hashFiles('requirements.txt') != '' || hashFiles('requirements-dev.txt') != '' }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.12'
cache: 'pip'
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Setup Node.js (if package.json present)
if: ${{ hashFiles('package.json') != '' }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '20'
cache: ${{ (hashFiles('pnpm-lock.yaml') != '' && 'pnpm') || (hashFiles('yarn.lock') != '' && 'yarn') || (hashFiles('package-lock.json') != '' && 'npm') || '' }}
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
cat summary.txt

- name: Upload environment summary artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: environment-summary
path: summary.txt
Expand All @@ -172,7 +172,7 @@ jobs:
cachix_auth_token: ${{ secrets.CACHIX_AUTH_TOKEN }}

- name: Upload doc-pages artifacts
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
name: github-pages
path: ${{ steps.docs.outputs.site_dir }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/make-build.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
run: make build

- name: Upload Test Coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage
path: coverage.txt

- name: Upload Fuzz Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: fuzz-results
path: testdata/fuzz
4 changes: 2 additions & 2 deletions .github/workflows/make-release.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
gh-access-token: ${{ secrets.GH_ACCESS_TOKEN }}
cachix-auth-token: ${{ secrets.CACHIX_AUTH_TOKEN }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '${{ vars.PYTHON_VERSION }}'
check-latest: true

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: ${{ vars.GO_VERSION }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nix-lab.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: DeterminateSystems/nix-installer-action@main
Expand All @@ -86,14 +86,14 @@ jobs:
--accept-flake-config --refresh --command ${{ inputs.command }}

- name: Upload Outputs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: ignore
name: coverage
path: coverage.txt

- name: Upload Fuzz Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: ignore
name: fuzz-results
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nix.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Tailscale
if: ${{ inputs.tailnet }}
uses: tailscale/github-action@v3
uses: tailscale/github-action@v4
with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
Expand All @@ -101,21 +101,21 @@ jobs:
run: ${{ inputs.command }}

- name: Upload Test Coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: ignore
name: coverage
path: coverage.txt

- name: Upload Fuzz Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: ignore
name: fuzz-results
path: testdata/fuzz

- name: Upload Test Coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: ignore
name: benchmarks
Expand Down
Loading