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
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Test
run: make test
- name: Upload coverage report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-out
path: coverage.out
Expand All @@ -106,7 +106,7 @@ jobs:
env:
GIT_LATEST_TAG: ${{ steps.get-latest-tag.outputs.tag }}
- name: Upload coverage report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: e2e-cli-coverage-out
path: e2e-cli-coverage.out
Expand All @@ -133,7 +133,7 @@ jobs:
env:
GIT_LATEST_TAG: ${{ steps.get-latest-tag.outputs.tag }}
- name: Upload coverage report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: e2e-lang-coverage-out
path: e2e-lang-coverage.out
Expand Down Expand Up @@ -174,18 +174,18 @@ jobs:
run: |
go install github.com/mattn/goveralls@latest
- name: Get coverage report
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: coverage-out
path: merge

- name: Get cli e2e coverage report
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: e2e-cli-coverage-out
path: merge
- name: Get language e2e coverage report
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: e2e-lang-coverage-out
path: merge
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- run: git fetch --prune --prune-tags
- run: git tag -l 'v*'
- run: ./hack/changelog.sh > CHANGELOG.md
- uses: peter-evans/create-pull-request@v7
- uses: peter-evans/create-pull-request@v8
with:
title: 'docs: updated CHANGELOG.md'
commit-message: 'docs: updated CHANGELOG.md'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload gobin
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: gobin_${{ github.event.release.tag_name }}
retention-days: 1
Expand All @@ -59,7 +59,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Get gobin
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: gobin_${{ github.event.release.tag_name }}
path: dist/
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
python setup.py sdist
mv dist/*.tar.gz wheelhouse/
- name: Upload artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: pypi_${{ github.event.release.tag_name }}_${{ matrix.os }}
path: wheelhouse/
Expand All @@ -107,7 +107,7 @@ jobs:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: pypi_${{ github.event.release.tag_name }}_*
merge-multiple: true
Expand All @@ -131,7 +131,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v4
uses: actions/cache@v5
id: cache
with:
path: /tmp/.buildx-cache
Expand Down Expand Up @@ -167,15 +167,15 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v4
uses: actions/cache@v5
id: cache
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Get gobin
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: gobin_${{ github.event.release.tag_name }}
path: dist/
Expand Down
Loading