chore(deps): update actions/setup-go action to v5.3.0 #20
Workflow file for this run
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
name: Test Actions | |
on: | |
push: | |
tags-ignore: | |
# Ignore release tags, as the install-slsactl will probably | |
# be executed before the release takes place, causing it to | |
# fail as it will try to download the binaries of the current | |
# release, which may or may not be available. | |
- 'v*' | |
pull_request: | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
test-install-action: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: ./actions/install-slsactl | |
- run: slsactl version | |
shell: bash | |
test-verify-action: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: ./actions/verify | |
with: | |
image: ghcr.io/kubewarden/policy-server:v1.19.0 |