Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
- Remove actions/ folder
- Remove useless workflows (test, lint, …)
- Update `setup-go` to `v5`

Signed-off-by: Vincent Demeester <[email protected]>
  • Loading branch information
vdemeester committed Dec 19, 2023
1 parent 7893b65 commit 58e8402
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 80 deletions.
12 changes: 0 additions & 12 deletions .github/actions/go/action.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/actions/tektoncd/action.yaml

This file was deleted.

10 changes: 8 additions & 2 deletions .github/workflows/generate-catalogs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/go
- uses: actions/setup-go@v5
with:
go-version: 1.20.x
cache: true
- id: set-matrix
name: Generate catalog matrix
run: |
Expand All @@ -33,7 +36,10 @@ jobs:
matrix: ${{fromJSON(needs.catalog-matrix.outputs.matrix)}}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/go
- uses: actions/setup-go@v5
with:
go-version: 1.20.x
cache: true
- name: ${{ matrix.type }} catalog for ${{ matrix.name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/generate-experimental-catalogs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/go
- uses: actions/setup-go@v5
with:
go-version: 1.20.x
cache: true
- id: set-matrix
name: Generate catalog matrix
run: |
Expand All @@ -33,7 +36,10 @@ jobs:
matrix: ${{fromJSON(needs.experimental-catalog-matrix.outputs.matrix)}}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/go
- uses: actions/setup-go@v5
with:
go-version: 1.20.x
cache: true
- name: ${{ matrix.type }} catalog for ${{ matrix.name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/test-kubernetes-tasks.yaml

This file was deleted.

0 comments on commit 58e8402

Please sign in to comment.