Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
Browse files Browse the repository at this point in the history
  • Loading branch information
k15r authored Dec 15, 2023
2 parents f41454c + 031438f commit 1c29e9e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.19
cache: true
Expand All @@ -38,21 +38,21 @@ jobs:
run: go test -v ./...

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Build Docker image
id: build-and-push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.19'
- uses: actions/checkout@v4
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: test
Expand Down
2 changes: 1 addition & 1 deletion resources/loadtest/base/publisher.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
spec:
serviceAccountName: loadtest-publisher
containers:
- image: ghcr.io/kyma-project/eventing-tools:0.0.2
- image: ghcr.io/kyma-project/eventing-tools:0.0.3
args:
- publisher
- --loadtest
Expand Down
4 changes: 2 additions & 2 deletions resources/loadtest/base/subscriber.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
- kyma-system
topologyKey: kubernetes.io/hostname
containers:
- image: ghcr.io/kyma-project/eventing-tools:0.0.2
- image: ghcr.io/kyma-project/eventing-tools:0.0.3
args:
- subscriber
- --loadtest
Expand Down Expand Up @@ -87,7 +87,7 @@ spec:
- kyma-system
topologyKey: kubernetes.io/hostname
containers:
- image: ghcr.io/kyma-project/eventing-tools:0.0.2
- image: ghcr.io/kyma-project/eventing-tools:0.0.3
args:
- subscriber
- --loadtest
Expand Down
8 changes: 4 additions & 4 deletions resources/validationtest/base/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
app: publisher
spec:
containers:
- image: ghcr.io/kyma-project/eventing-tools:0.0.2
- image: ghcr.io/kyma-project/eventing-tools:0.0.3
args:
- publisher
imagePullPolicy: IfNotPresent
Expand Down Expand Up @@ -85,7 +85,7 @@ spec:
app: event-subscriber-0
spec:
containers:
- image: ghcr.io/kyma-project/eventing-tools:0.0.2
- image: ghcr.io/kyma-project/eventing-tools:0.0.3
args:
- subscriber
- --listen-port=8888
Expand Down Expand Up @@ -132,7 +132,7 @@ spec:
app: event-subscriber-1
spec:
containers:
- image: ghcr.io/kyma-project/eventing-tools:0.0.2
- image: ghcr.io/kyma-project/eventing-tools:0.0.3
args:
- subscriber
- --listen-port=8888
Expand Down Expand Up @@ -179,7 +179,7 @@ spec:
app: event-subscriber-2
spec:
containers:
- image: ghcr.io/kyma-project/eventing-tools:0.0.2
- image: ghcr.io/kyma-project/eventing-tools:0.0.3
args:
- subscriber
- --listen-port=8888
Expand Down

0 comments on commit 1c29e9e

Please sign in to comment.