Skip to content

Commit

Permalink
ci: update Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ipmb committed Jul 21, 2023
1 parent c5914ae commit e59e24f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/databases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
-
name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: 1.19
-
name: Build
run: go build -o bin/apppack
-
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v3
with:
name: apppack
path: bin
Expand All @@ -50,7 +50,7 @@ jobs:
needs: ["init"]
steps:
-
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: apppack
path: bin
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
needs: ["init"]
steps:
-
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: apppack
path: bin
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
needs: ["init"]
steps:
-
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: apppack
path: bin
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
needs: ["init"]
steps:
-
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: apppack
path: bin
Expand Down Expand Up @@ -193,9 +193,9 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
-
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: apppack
path: bin
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
- redis
steps:
-
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: apppack
path: bin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
-
name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: 1.19
-
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.19
-
Expand Down

0 comments on commit e59e24f

Please sign in to comment.