Skip to content

chore(deps): bump github.com/hyp3rd/ewrap from 1.3.7 to 1.3.8 #220

chore(deps): bump github.com/hyp3rd/ewrap from 1.3.7 to 1.3.8

chore(deps): bump github.com/hyp3rd/ewrap from 1.3.7 to 1.3.8 #220

Workflow file for this run

---
name: Go
on:
pull_request:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Load project settings
id: settings
run: |
set -a
source .project-settings.env
set +a
echo "go_version=${GO_VERSION}" >> "$GITHUB_OUTPUT"
echo "gci_prefix=${GCI_PREFIX:-github.com/hyp3rd/hypercache}" >> "$GITHUB_OUTPUT"
echo "golangci_lint_version=${GOLANGCI_LINT_VERSION}" >> "$GITHUB_OUTPUT"
echo "proto_enabled=${PROTO_ENABLED:-true}" >> "$GITHUB_OUTPUT"
- name: Set up Go
uses: actions/setup-go@v6.1.0
with:
go-version: "${{ steps.settings.outputs.go_version }}"
check-latest: true
- name: Cache Go modules
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ steps.settings.outputs.go_version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ steps.settings.outputs.go_version }}-
- name: Modules download
run: go mod download
- name: Tidy check
run: |
go mod tidy
git diff --exit-code go.mod go.sum
- name: Verify
run: go mod verify
- name: Build
run: go build -v ./...