fix: pathing issues loading images with Zarf on Windows #7769
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: Validate Lint | |
on: pull_request | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
- name: Run Revive Action by pulling pre-built image | |
uses: docker://morphy/revive-action:v2 | |
with: | |
config: revive.toml | |
# Exclude patterns, separated by semicolons (optional) | |
exclude: "src/cmd/viper.go" | |
# Path pattern (default: ./...) | |
path: "./src/..." |