Skip to content

Commit

Permalink
Update deprecated commands (#42)
Browse files Browse the repository at this point in the history
* Update deprecaed commands

* Update actions/setup-go to v3
  • Loading branch information
Hajara-I authored Jan 23, 2023
1 parent c891f73 commit b16f19e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.16.x'
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand All @@ -29,7 +29,7 @@ jobs:
docker-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Tag
run: echo "TAG=${{ github.event.pull_request.head.ref }}" > $GITHUB_ENV
- name: Build
Expand Down

0 comments on commit b16f19e

Please sign in to comment.