Disable iptables for L2-only traffic when everything is allowed by ACLs #310
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2024, Zededa, Inc. | |
# SPDX-License-Identifier: Apache-2.0 | |
--- | |
name: Check Docker Hashes Consistency | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- "master" | |
- "[0-9]+.[0-9]+" | |
- "[0-9]+.[0-9]+-stable" | |
paths-ignore: | |
- '**/*.md' | |
- '.github/**' | |
pull_request: | |
branches: | |
- "master" | |
- "[0-9]+.[0-9]+" | |
- "[0-9]+.[0-9]+-stable" | |
paths-ignore: | |
- '**/*.md' | |
- '.github/**' | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Check Docker Hashes Consistency | |
run: | | |
make check-docker-hashes-consistency | |
- name: Store raw test results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'check-docker-hashes-consistency-report' | |
path: ${{ github.workspace }}/dist |