Skip to content

Commit

Permalink
Update actions used in GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
janh committed Sep 15, 2024
1 parent 7576722 commit aee11aa
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create build directory
run: |
Expand All @@ -35,7 +35,7 @@ jobs:
done
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux
path: ./build/*.zip
Expand All @@ -46,10 +46,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: stable

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
}
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows
path: ./build/*.zip
Expand All @@ -138,10 +138,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: stable

Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
done
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macos
path: ./build/*.zip
Expand All @@ -204,7 +204,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Determine variables
id: vars
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
./docs/build.sh ./build/template
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ./artifacts

Expand All @@ -253,7 +253,7 @@ jobs:
done
- name: Create release
uses: ncipollo/release-action@v1
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # v1.14.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: github-master-builds
Expand Down

0 comments on commit aee11aa

Please sign in to comment.