1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-28 03:57:09 +02:00

Fix duplicate checkout action in GitHub workflow (#1407)

* remove duplicate checkout

* adding changelog
This commit is contained in:
Azfaar Qureshi 2020-12-17 11:59:44 -05:00 committed by GitHub
parent 2051927b9b
commit 3fb80fb2df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -13,8 +13,6 @@ jobs:
go_version: [1.14, 1.15]
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Go

View File

@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Store the parent's full `SpanContext` rather than just its span ID in the `span` struct. (#1360)
- Improve span duration accuracy. (#1360)
- Migrated CI/CD from CircleCI to GitHub Actions (#1382)
- Remove duplicate checkout from GitHub Actions workflow (#1407)
### Removed
- Remove `errUninitializedSpan` as its only usage is now obsolete. (#1360)