Skip to content

Commit

Permalink
fix: updated actions libs to fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
vetal2409 committed Feb 12, 2024
1 parent 0f6ea27 commit ca22435
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.21

- name: Check
run: make check

- name: Lint
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v4
with:
version: v1.41.1
version: v1.54
skip-pkg-cache: true

- name: Test
Expand All @@ -40,7 +40,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
needs: start-runner
concurrency: acceptance_test # allow to run the only one instance of the current acceptance_test job
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Go
run: |
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down

0 comments on commit ca22435

Please sign in to comment.