Skip to content

Commit

Permalink
Merge pull request #189 from hirosassa/fix-ci
Browse files Browse the repository at this point in the history
update actions version
  • Loading branch information
kitagry authored Dec 15, 2024
2 parents 871802b + 1a1720f commit 891b812
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,15 @@ jobs:
BIN_NAME: bqls

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/checkout@v4
- name: setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true

- name: cache for linux
uses: actions/cache@v3
uses: actions/cache@v4
if: runner.os == 'Linux'
with:
path: |
Expand All @@ -43,7 +40,7 @@ jobs:
${{ runner.os }}-go-
- name: cache for macOS
uses: actions/cache@v3
uses: actions/cache@v4
if: runner.os == 'macOS'
with:
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: cache for linux
uses: actions/cache@v3
uses: actions/cache@v4
if: runner.os == 'Linux'
with:
path: |
Expand Down Expand Up @@ -46,14 +46,14 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: cache for linux
uses: actions/cache@v3
uses: actions/cache@v4
if: runner.os == 'Linux'
with:
path: |
Expand Down

0 comments on commit 891b812

Please sign in to comment.