Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

ci: Bump actions/checkout to v4 #18

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Run load test using action code from commit
uses: ./
with:
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Run k6 local test
uses: grafana/k6-action@v0.3.0
with:
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Run k6 cloud test
uses: grafana/k6-action@v0.3.0
with:
Expand Down Expand Up @@ -139,16 +139,16 @@ jobs:

services:
quickpizza:
image: ghcr.io/grafana/quickpizza-local:0.2.0
image: ghcr.io/grafana/quickpizza-local:0.4.0
ports:
- 3333:3333

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Run local k6 test
uses: grafana/k6-action@v0.2.0
uses: grafana/k6-action@v0.3.0
with:
filename: script.js
env:
Expand All @@ -166,7 +166,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install k6
run: |
curl https://github.com/grafana/k6/releases/download/v0.44.0/k6-v0.44.0-linux-amd64.tar.gz -L | tar xvz --strip-components 1
Expand Down