Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Bump actions/checkout from 2.4.0 to 3.0.2 #269

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
container: "golang:1.17"
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
- name: Install tools
run: make install-tools
- name: Format
Expand All @@ -24,7 +24,7 @@ jobs:
container: "golang:1.17"
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
- name: Install tools
run: make install-tools
- name: Run linters
Expand All @@ -37,7 +37,7 @@ jobs:
container: "golang:1.17"
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
- name: Install tools
run: make install-tools
- name: Run linters
Expand All @@ -49,7 +49,7 @@ jobs:
container: "golang:1.17"
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
- name: Tidy
run: make modules
- name: Check for changes
Expand All @@ -62,7 +62,7 @@ jobs:
container: "golang:1.17"
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
- name: Install tools
run: make install-tools
- name: Generate files
Expand All @@ -77,7 +77,7 @@ jobs:
container: "hashicorp/terraform"
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
# Image is based on alpine, but doesn't contain make, so we install it.
- name: Install make
run: apk add make
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
Expand Down