Skip to content

Commit

Permalink
GHA: Update actions versions (node16 deprecation)
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed Mar 9, 2024
1 parent 9b524b6 commit 6a88a82
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup MSYS2 environment
uses: msys2/setup-msys2@v2
Expand All @@ -24,17 +24,17 @@ jobs:
- name: Build binaries
run: make -j2 MAKE="make -j2"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: zip-archive
path: build/gettext-tools*.zip

- uses: nuget/setup-nuget@v1
- uses: nuget/setup-nuget@v2

- name: Build NuGet package
run: make nuget

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: nuget-package
path: build/*.nupkg
Expand All @@ -45,7 +45,7 @@ jobs:
runs-on: windows-latest
needs: build
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: zip-archive

Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: windows-latest
needs: build
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: nuget-package

Expand Down

0 comments on commit 6a88a82

Please sign in to comment.