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
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 1

Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

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

- name: Cache Go modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand All @@ -64,7 +64,7 @@ jobs:
go tool cover -html=coverage.out -o coverage.html

- name: Upload coverage reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: |
Expand All @@ -76,20 +76,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set up Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}

- name: Set up corepack
run: npm install -g corepack@latest && corepack enable

- name: Set up cache
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
cache: "pnpm"
cache-dependency-path: web/pnpm-lock.yaml
Expand All @@ -111,7 +111,7 @@ jobs:
run: CI= pnpm run build

- name: Upload web production build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: web-dist
path: web/dist
Expand All @@ -122,18 +122,18 @@ jobs:
needs: [test, web]
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Download web production build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: web-dist
path: web/dist

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
cache: true
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
BUILDER: ${{ github.actor }}@github-actions

- name: Upload assets
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: netronome
path: |
Expand All @@ -186,7 +186,7 @@ jobs:
- linux/arm64
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -198,7 +198,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Download web production build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: web-dist
path: web/dist
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
touch "/tmp/digests/${digest#sha256:}"

- name: Upload image digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: docker-digests-${{ steps.digest-prep.outputs.manifest-hash }}
path: /tmp/digests/*
Expand All @@ -264,7 +264,7 @@ jobs:
needs: [docker]
steps:
- name: Download image digests
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
path: /tmp/digests
pattern: docker-digests-*
Expand Down
Loading