Skip to content

build(deps): bump kube-logging/logging-operator from 5.3.0 to 5.4.0 in the github-actions group #48

build(deps): bump kube-logging/logging-operator from 5.3.0 to 5.4.0 in the github-actions group

build(deps): bump kube-logging/logging-operator from 5.3.0 to 5.4.0 in the github-actions group #48

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: '.go-version'
- name: Build
run: make GOFLAGS="-v" build
- name: Test
run: make GOFLAGS="-v" test
- name: Check diff
run: make check-diff
license-check:
name: License check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: '.go-version'
- name: Cache licenses
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
with:
key: licensei-v2-${{ hashFiles('go.sum') }}
path: |
.licensei.cache
restore-keys: |
licensei-v2
- name: Download license information for dependencies
env:
GITHUB_TOKEN: ${{ github.token }}
run: make license-cache
- name: Check licenses
env:
GITHUB_TOKEN: ${{ github.token }}
run: make license-check
artifacts:
name: Artifacts
uses: kube-logging/logging-operator/.github/workflows/artifacts.yaml@5.4.0
with:
version: "latest"
publish: ${{ github.event_name == 'push' }}
permissions:
contents: read
packages: write
id-token: write
security-events: write