Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3.0.2 to 3.3.0 #185

Closed
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
# Execute the checks inside the container instead the VM.
container: golangci/golangci-lint:v1.42.0-alpine
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.3.0
- run: ./scripts/check/check.sh

unit-test:
name: Unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.3.0
- uses: actions/setup-go@v3
with:
go-version: 1.17
Expand All @@ -38,7 +38,7 @@ jobs:
name: Release image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.3.0
- name: Build image
run: make build-image
- name: Docker login
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var.
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.3.0
- name: Build image
run: make build-image
- name: Docker login
Expand All @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var.
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.3.0
- name: Build binaries
run: |
mkdir -p ./bin
Expand Down