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
62 changes: 31 additions & 31 deletions .github/workflows/jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
node-version: ${{ env.NVMRC }}
cache: "yarn"
cache-dependency-path: web-app/yarn.lock
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: assets-cache
name: Assets Cache
with:
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
id: go-minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: assets-cache
name: Assets Cache
with:
Expand All @@ -230,7 +230,7 @@ jobs:
cd $GITHUB_WORKSPACE
cp $GITHUB_WORKSPACE/minio_repository/minio .

- uses: actions/cache/save@v5
- uses: actions/cache/save@v6.1.0
# skip minio binary cache
if: false
id: minio-latest-cache
Expand Down Expand Up @@ -269,13 +269,13 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
id: go
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
./console
key: ${{ runner.os }}-binary-${{ github.run_id }}
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: assets-cache
name: Assets Cache
with:
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:
run: |
yarn add minio

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -381,7 +381,7 @@ jobs:
run: |
yarn add minio

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -503,7 +503,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -564,7 +564,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -621,7 +621,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -678,7 +678,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -735,7 +735,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -792,7 +792,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -849,7 +849,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -909,7 +909,7 @@ jobs:
continue-on-error: false
run: |
yarn add minio
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand Down Expand Up @@ -970,7 +970,7 @@ jobs:
run: |
make test-pkg

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache-pkg
name: Coverage Cache Pkg
with:
Expand Down Expand Up @@ -1006,7 +1006,7 @@ jobs:
run: |
make test

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache-api
name: Coverage Cache API
with:
Expand Down Expand Up @@ -1036,7 +1036,7 @@ jobs:
go-version: ${{ matrix.go-version }}
id: go

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache
with:
path: |
Expand All @@ -1057,7 +1057,7 @@ jobs:

make test-integration MINIO_VERSION=$MINIO_VERSION TAG=$TAG;

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache
name: Coverage Cache
with:
Expand Down Expand Up @@ -1114,7 +1114,7 @@ jobs:
echo $MINIO_VERSION;

make test-replication MINIO_VERSION=$MINIO_VERSION;
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache-replication
name: Coverage Cache Replication
with:
Expand Down Expand Up @@ -1152,7 +1152,7 @@ jobs:
echo $MINIO_VERSION;

make test-sso-integration MINIO_VERSION=$MINIO_VERSION;
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache-sso
name: Coverage Cache SSO
with:
Expand Down Expand Up @@ -1187,39 +1187,39 @@ jobs:
repository: wadey/gocovmerge
path: gocovmerge

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache
name: Coverage Cache
with:
path: |
./integration/coverage/
key: ${{ runner.os }}-coverage-2-${{ github.run_id }}

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache-sso
name: Coverage Cache SSO
with:
path: |
./sso-integration/coverage/
key: ${{ runner.os }}-sso-coverage-2-${{ github.run_id }}

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache-replication
name: Coverage Cache Replication
with:
path: |
./replication/coverage/
key: ${{ runner.os }}-replication-coverage-2-${{ github.run_id }}

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache-api
name: Coverage Cache API
with:
path: |
./api/coverage/
key: ${{ runner.os }}-coverage-api-2-${{ github.run_id }}

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: coverage-cache-pkg
name: Coverage Cache Pkg
with:
Expand Down Expand Up @@ -1290,7 +1290,7 @@ jobs:
node-version: ${{ env.NVMRC }}
cache: "yarn"
cache-dependency-path: web-app/yarn.lock
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: assets-cache-istanbul-coverage
name: Assets Cache Istanbul Coverage
with:
Expand Down Expand Up @@ -1329,13 +1329,13 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
id: go
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache Istanbul Coverage
with:
path: |
./console
key: ${{ runner.os }}-binary-istanbul-coverage-${{ github.run_id }}
- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
id: assets-cache-istanbul-coverage
name: Assets Cache Istanbul Coverage
with:
Expand Down Expand Up @@ -1518,7 +1518,7 @@ jobs:
- name: Install Playwright Browsers
run: npx playwright install --with-deps

- uses: actions/cache@v5
- uses: actions/cache@v6.1.0
name: Console Binary Cache Istanbul Coverage
with:
path: |
Expand Down
Loading