Skip to content
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v2
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3.2.0
with:
go-version: '${{ env.golang-version }}'
- run: make --always-make format generate && git diff --exit-code
Expand All @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v2
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3.2.0
with:
go-version: '${{ env.golang-version }}'
- run: make check-docs
Expand All @@ -53,7 +53,7 @@ jobs:
- uses: actions/checkout@v2
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3.2.0
with:
go-version: '${{ env.golang-version }}'
- run: make check-metrics
Expand All @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@v2
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3.2.0
with:
go-version: '${{ env.golang-version }}'
- run: make operator
Expand All @@ -80,7 +80,7 @@ jobs:
- uses: actions/checkout@v2
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3.2.0
with:
go-version: '${{ env.golang-version }}'
- run: cd cmd/po-rule-migration && go install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3.2.0
with:
go-version: '${{ env.golang-version }}'
- name: Build images
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3.2.0
with:
go-version: '${{ env.golang-version }}'
- name: login to quay.io
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3.2.0
with:
go-version: '${{ env.golang-version }}'
- run: make test-unit
Expand All @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v2
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3.2.0
with:
go-version: ${{ env.golang-version }}
- run: make test-long