Skip to content

Commit

Permalink
Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Sep 7, 2024
1 parent c9a3a15 commit 1dcd661
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ runs:
## Install the .NET Core workload
## This is not required since the windows-2019 runner comes with pre-installed .NET Framework
#- name: Install .NET Core
# uses: actions/setup-dotnet@v1
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: 5.0.x

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v2

# Build the app (after restoring dependencies)
- name: Build
Expand All @@ -59,7 +59,7 @@ runs:

- name: Upload build artifacts
if: ${{ inputs.artifact != '' }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifact }}
path: ${{ steps.build.outputs.path }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -38,4 +38,4 @@ jobs:
build_options: '/p:UseSharedCompilation=false'

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .github/workflows/crowdin_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
sudo dpkg -i crowdin.deb
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
portable-build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/build
with:
configuration: Release
Expand All @@ -23,7 +23,7 @@ jobs:
needs: portable-build
steps:
- name: Collect artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: release_artifact_portable
path: release_artifact_portable
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build program executable
id: build
uses: ./.github/build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-testbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
flavor: [Installer, Portable]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/build
with:
configuration: Debug
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build program executable
id: build
uses: ./.github/build
Expand All @@ -46,12 +46,12 @@ jobs:
#
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# uses: actions/checkout@v4
#
# ## Install the .NET Core workload
# ## This is not required since the windows-2019 runner comes with pre-installed .NET Framework
# #- name: Install .NET Core
# # uses: actions/setup-dotnet@v1
# # uses: actions/setup-dotnet@v4
# # with:
# # dotnet-version: 5.0.x
#
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: pre-commit/[email protected].0
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
- uses: pre-commit/[email protected].1
with:
extra_args: --all-files --hook-stage=manual

0 comments on commit 1dcd661

Please sign in to comment.