Skip to content
Open
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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

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

Expand All @@ -39,7 +39,7 @@ jobs:

# It can not be done before enable corepack
- 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 @@ -53,7 +53,7 @@ jobs:
run: CI= pnpm run build

- name: Upload web production build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: web-dist
path: web/dist
Expand All @@ -78,13 +78,13 @@ jobs:
options: --health-cmd "redis-cli ping" --health-interval 1s --health-timeout 5s --health-retries 60
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

# 1.20 is the last version to support Windows < 10, Server < 2016, and MacOS < 1.15.
- 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 @@ -117,19 +117,19 @@ jobs:
needs: [web, test]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

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

# 1.20 is the last version to support Windows < 10, Server < 2016, and MacOS < 1.15.
- 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 @@ -166,7 +166,7 @@ jobs:
dist/web-dist.tar.gz

- name: Upload assets
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dashbrr
path: |
Expand Down Expand Up @@ -199,12 +199,12 @@ jobs:
needs: [web, test]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

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

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