build(deps): bump actions/setup-go from 5.2.0 to 5.3.0 #486
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
services: | |
ctfd: | |
image: ctfd/ctfd:3.7.5@sha256:7f456b23727286c9df2b58e0b7398cc0196e2b74e4c1c5b3cda7a5b71034637d | |
ports: | |
- 8000:8000 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Go | |
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 | |
with: | |
go-version-file: 'go.mod' | |
- name: Cache go modules | |
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: Wait for CTFd server | |
run: | | |
max_attempts=60 | |
base_url="http://localhost:8000" | |
for ((i=0; i<$max_attempts; i++)); do | |
if curl --head --fail --silent --show-error "$base_url" >/dev/null; then | |
echo "Server is up and running!" | |
break | |
else | |
echo "Waiting for the server to respond... (attempt $((i+1)))" | |
sleep 5 | |
fi | |
done | |
if [ $i -eq $max_attempts ]; then | |
echo "Server did not respond within the allotted time. Exiting..." | |
exit 1 | |
fi | |
- name: Run go tests | |
run: make tests | |
env: | |
CTFD_URL: http://localhost:8000 | |
- name: Upload coverage to Coveralls | |
if: ${{ matrix.update-coverage }} | |
uses: shogo82148/actions-goveralls@e6875f831db61e6abffbd8df91a2eb6cd24b46c9 # v1.9.1 | |
with: | |
path-to-profile: functional.out | |
go-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 | |
with: | |
go-version-file: 'go.mod' | |
- name: go-lint | |
uses: golangci/golangci-lint-action@ec5d18412c0aeab7936cb16880d708ba2a64e1ae # v6.2.0 |