Skip to content
Open
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
22 changes: 11 additions & 11 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
graphchange: "${{ steps.graph-filter.outputs.graphchange }}"
steps:
- uses: "actions/checkout@v6"
- uses: "dorny/paths-filter@v3"
- uses: "dorny/paths-filter@v4"
id: "filter"
with:
filters: |
Expand All @@ -33,7 +33,7 @@ jobs:
- "pkg/**"
- "e2e/**"
- "internal/**"
- uses: "dorny/paths-filter@v3"
- uses: "dorny/paths-filter@v4"
id: "graph-filter"
with:
filters: |
Expand Down Expand Up @@ -83,15 +83,15 @@ jobs:
- uses: "authzed/actions/setup-go@main"
with:
go-version: "${{ env.GO_VERSION }}"
- uses: "docker/setup-qemu-action@v3"
- uses: "docker/setup-buildx-action@v3"
- uses: "docker/setup-qemu-action@v4"
- uses: "docker/setup-buildx-action@v4"
- name: "Run Unit Tests"
uses: "magefile/mage-action@v3"
uses: "magefile/mage-action@v4"
with:
version: "latest"
args: "test:unit"
- name: "Upload coverage reports to Codecov"
uses: "codecov/codecov-action@v5"
uses: "codecov/codecov-action@v6"
with:
token: "${{ secrets.CODECOV_TOKEN }}"

Expand All @@ -118,15 +118,15 @@ jobs:
- uses: "authzed/actions/setup-go@main"
with:
go-version: "${{ env.GO_VERSION }}"
- uses: "docker/setup-qemu-action@v3"
- uses: "docker/setup-buildx-action@v3"
- uses: "docker/setup-qemu-action@v4"
- uses: "docker/setup-buildx-action@v4"
- name: "Run E2E Tests"
uses: "magefile/mage-action@v3"
uses: "magefile/mage-action@v4"
with:
version: "latest"
args: "test:e2e"
- name: "Upload coverage reports to Codecov"
uses: "codecov/codecov-action@v5"
uses: "codecov/codecov-action@v6"
with:
token: "${{ secrets.CODECOV_TOKEN }}"
- name: "Check if validated update graph has changed"
Expand All @@ -138,7 +138,7 @@ jobs:
files: |
config/update-graph.yaml
- name: "Commit validated update graph"
uses: "EndBug/add-and-commit@v9"
uses: "EndBug/add-and-commit@v10"
if: |
steps.verify-changed-graph.outputs.files_changed == 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
working-directory: "magefiles"
run: "go run mvdan.cc/gofumpt -w ."
- name: "Codegen"
uses: "magefile/mage-action@v3"
uses: "magefile/mage-action@v4"
with:
version: "latest"
args: "generate"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
quayio_token: "${{ secrets.QUAYIO_PASSWORD }}"
github_token: "${{ secrets.GITHUB_TOKEN }}"
dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}"
- uses: "docker/setup-qemu-action@v3"
- uses: "docker/setup-buildx-action@v3"
- uses: "docker/setup-qemu-action@v4"
- uses: "docker/setup-buildx-action@v4"
# the release directory is gitignored, which keeps goreleaser from
# complaining about a dirty tree
- name: "Copy manifests to release directory"
Expand Down
Loading