Skip to content

Commit

Permalink
GitHub actions: update to the latest
Browse files Browse the repository at this point in the history
Fixes deprecation warnings about running on node12.
  • Loading branch information
vslavik committed Aug 5, 2023
1 parent 232ffb6 commit afcefa9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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@v2
- uses: actions/checkout@v3

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

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: zip-archive
path: build/gettext-tools*.zip
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Build NuGet package
run: make nuget

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
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@v2
- uses: actions/download-artifact@v3
with:
name: zip-archive

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

Expand Down

0 comments on commit afcefa9

Please sign in to comment.