Skip to content

Commit

Permalink
ci: update actions to the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
olegbespalov committed Nov 6, 2024
1 parent 860beed commit 86c9b51
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install awscli
run: sudo pip install awscli
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ jobs:
runs-on: ubuntu-latest

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

- name: download k6 binary
run: curl -fsSL https://github.com/grafana/k6/releases/download/v0.50.0/k6-v0.50.0-linux-amd64.tar.gz | tar -xvz
run: curl -fsSL https://github.com/grafana/k6/releases/download/v0.54.0/k6-v0.54.0-linux-amd64.tar.gz | tar -xvz

- name: move downloaded k6 binary to current directory
run: mv k6-*/k6 .

- name: Upload k6 binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: k6
path: k6
Expand All @@ -26,10 +26,10 @@ jobs:
runs-on: ubuntu-latest

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

- name: Download k6 binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: k6

Expand All @@ -44,10 +44,10 @@ jobs:
runs-on: ubuntu-latest

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

- name: Download k6 binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: k6

Expand Down

0 comments on commit 86c9b51

Please sign in to comment.