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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/operatorhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:


# Initialize environment and install Carvel toolsuite
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Initialize
run: |
RELEASE_VERSION=${GITHUB_REF#refs/*/}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ main ]

env:
GO_VERSION: 1.19.2
GO_VERSION: ~1.19.3
K8S_VERSION: v1.24.1

jobs:
Expand All @@ -16,11 +16,11 @@ jobs:
container: us.gcr.io/cf-rabbitmq-for-k8s-bunny/rabbitmq-for-kubernetes-ci
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Unit tests
run: make unit-tests
- name: Integration tests
Expand All @@ -31,11 +31,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Dry run examples
run: |
export GOPATH=$HOME/go
Expand Down Expand Up @@ -63,11 +63,11 @@ jobs:
- pivotalrabbitmq/rabbitmq:main-otp-max-bazel
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: System tests
env:
K8S_VERSION: ${{ matrix.k8s }}
Expand All @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Install Bats
Expand All @@ -94,7 +94,7 @@ jobs:
cd "$HOME"/bats-core
sudo ./install.sh /usr/local
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: kubectl rabbitmq tests
run: |
export GOPATH=$HOME/go
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prometheus-rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ on:
- observability/prometheus/rules/**/*.y*ml

env:
GO_VERSION: 1.19.2
GO_VERSION: ~1.19.2

jobs:
rules:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Create Prometheus rule file
run: |
make install-tools
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-versioned-api-ref.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:

steps:
- name: Checkout operator codebase
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: cluster-operator
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Checkout wiki codebase
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: ${{ github.repository }}.wiki
path: wiki
Expand Down