Skip to content

Commit

Permalink
update actions to fix deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jstaf committed Apr 20, 2024
1 parent 90bbb1c commit a7cd12e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
- personal
- business
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-go@v2
- uses: actions/setup-go@v5
with:
go-version: "1.19"

Expand All @@ -33,7 +33,7 @@ jobs:
libreoffice
sudo rm /usr/local/bin/aws # whyyy
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
if: always()

- name: Send test coverage to Coveralls
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov
Expand All @@ -108,7 +108,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Coveralls finished
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
Expand Down

0 comments on commit a7cd12e

Please sign in to comment.