Skip to content

Commit

Permalink
bump version of some actions for using Node.js 20 #314
Browse files Browse the repository at this point in the history
  • Loading branch information
michimani committed Jun 25, 2024
1 parent c10c5b2 commit 211f415
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/onlytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: "1.22"

- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get dependencies
run: go install
Expand All @@ -33,4 +33,4 @@ jobs:
run: go test -race -coverprofile="coverage.txt" -covermode=atomic github.com/michimani/gotwi/... -shuffle=on

- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: "1.22"

- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get dependencies
run: go install
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifact to get url to upload to release
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: artifact

Expand All @@ -69,7 +69,7 @@ jobs:
url=$(cat url.txt)
echo "##[set-output name=upload_url;]$url"
- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Pack source code in zip file
run: |
Expand Down

0 comments on commit 211f415

Please sign in to comment.