Skip to content

Commit

Permalink
Bump dawidd6/action-download-artifact from 2 to 6 in /.github/workflo…
Browse files Browse the repository at this point in the history
…ws in the github_actions group across 1 directory (#2680)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brian Wilson <[email protected]>
  • Loading branch information
dependabot[bot] and Tkael authored Jan 4, 2025
1 parent 2be1ca5 commit 9435e66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ContinuousIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,11 @@ jobs:
id: build
run: msbuild ${{ env.solution }} /p:Configuration=${{ env.build-config }} /p:UseSharedCompilation=false /verbosity:minimal
- name: Upload build artifacts
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4.5.0
with:
name: ${{ env.build-artifact-name }}
path: ./bin/Release/*
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

# Perform unit testing
- name: Add VSTest.console.exe to PATH
Expand All @@ -95,4 +96,4 @@ jobs:
uses: ./.github/actions/Test
with:
target-path: vstest.console.exe
target-args: Tests\bin\Release\Tests.dll /tests:UnitTests /Parallel /InIsolation /Blame
target-args: Tests\bin\Release\Tests.dll /tests:UnitTests /Parallel /InIsolation /Blame
15 changes: 2 additions & 13 deletions .github/workflows/SyncWiki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,8 @@ jobs:

# Retrieve our zipped build from a prior workflow
- name: Retrieve build artifacts
uses: dawidd6/action-download-artifact@v2
uses: actions/download-artifact@v4.1.8
with:
# Required, workflow file name or ID
workflow: ContinuousIntegration.yml
# Optional, the status or conclusion of a completed workflow to search for
# Can be one of a workflow conclusion::
# "failure", "success", "neutral", "cancelled", "skipped", "timed_out", "action_required"
# Or a workflow status:
# "completed", "in_progress", "queued"
# Default: "completed,success"
workflow_conclusion: success
# Required, commit ID
commit: ${{github.event.release.head.sha}}
# Optional, uploaded artifact name,
# will download all artifacts if not specified
# and extract them in respective subdirectories
Expand Down Expand Up @@ -68,4 +57,4 @@ jobs:
delete-missing: false # Delete all files in the repo that are not present in the source-directory. Defaults to false
dry-run: true # Optional. Defaults to false
env:
GH_ACCESS_TOKEN: ${{ secrets.GH_ACTIONS_TOKEN }}
GH_ACCESS_TOKEN: ${{ secrets.GH_ACTIONS_TOKEN }}

0 comments on commit 9435e66

Please sign in to comment.