Skip to content

Commit

Permalink
chore(actions): bump github actions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-github committed Apr 21, 2024
1 parent e5946a0 commit 04e4a85
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:

strategy:
matrix:
go-version: [ 1.18, 1.19 ]
go-version: [ 1.21, 1.22 ]

name: unit tests (go ${{ matrix.go-version }})
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true

- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down

0 comments on commit 04e4a85

Please sign in to comment.