build(deps): bump the common-golang-dependencies group across 1 directory with 5 updates #9
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: Volume Shadow Copy Test | |
on: | |
push: | |
branches: [ master ] | |
tags: | |
- v* | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
vss-test: | |
name: Volume Shadow Copy Test | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
id: go | |
- name: Install gsudo | |
shell: bash | |
run: | | |
choco install -y --no-progress gsudo | |
echo "C:\tools\gsudo\Current" >> $GITHUB_PATH | |
- name: Admin Test | |
run: gsudo make os-snapshot-tests | |
- name: Non-Admin Test | |
run: gsudo -i Medium make os-snapshot-tests | |
- name: Upload Logs | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
with: | |
name: logs | |
path: .logs/**/*.log | |
if-no-files-found: ignore | |
if: ${{ always() }} |