Skip to content

Bump golang.org/x/net from 0.27.0 to 0.28.0 #5767

Bump golang.org/x/net from 0.27.0 to 0.28.0

Bump golang.org/x/net from 0.27.0 to 0.28.0 #5767

Workflow file for this run

---
name: Unit Tests
on:
pull_request:
push:
tags:
- 'v**'
permissions: {}
jobs:
unit-testing:
name: Go Unit Tests
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Create artifacts directory
run: mkdir artifacts
- name: Run Go unit tests
run: |
set -o pipefail
make unit 2>&1 | tee artifacts/unittest.log
- name: Collect artifacts
run: |
for f in $(find ./pkg -name "*.xml"); do
mkdir -p artifacts/$(dirname $f)
cp $f -rfp artifacts/$f
done
- name: Upload artifacts
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
with:
name: Unit test artifacts
path: artifacts