Skip to content

Commit

Permalink
actions: global version update
Browse files Browse the repository at this point in the history
  • Loading branch information
feliixx committed Apr 14, 2024
1 parent 955a753 commit c90f4ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
environment: production

steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'

Expand All @@ -45,7 +45,7 @@ jobs:

- name: Register SSH key
continue-on-error: true
uses: webfactory/ssh-agent@v0.7.0
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY_PRODUCTION }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: '1.22'

- name: Lint code
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
version: v1.54.1
version: v1.57.2
args: --timeout 2m0s

- name: Vet code
Expand All @@ -48,9 +48,9 @@ jobs:
with:
files: coverage.txt

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: Install npm test dependencies
working-directory: internal/web
Expand Down

0 comments on commit c90f4ae

Please sign in to comment.