Skip to content

Commit

Permalink
Bump actions/checkout from 2.4.0 to 3 (open-telemetry#754)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.4.0...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Mar 2, 2022
1 parent 7099b54 commit f76dd87
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
go-version: 1.17

- name: Check out code into the Go module directory
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3

- name: "install kubebuilder"
run: ./hack/install-kubebuilder.sh
Expand All @@ -37,7 +37,7 @@ jobs:
with:
go-version: 1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3

- name: Lint
uses: golangci/golangci-lint-action@v3
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
go-version: 1.17

- name: Check out code into the Go module directory
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3

- name: "install kuttl"
run: ./hack/install-kuttl.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-autoinstrumentation-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3

- name: Read version
run: echo "VERSION=$(cat autoinstrumentation/java/version.txt)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-autoinstrumentation-nodejs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3

- name: Read version
run: echo VERSION=$(cat autoinstrumentation/nodejs/package.json | jq -r '.dependencies."@opentelemetry/sdk-node"') >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-autoinstrumentation-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3

- name: Read version
run: echo VERSION=$(head -n 1 autoinstrumentation/python/requirements.txt | cut -d '=' -f3) >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Publish container images
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3

- name: Unshallow
run: git fetch --prune --unshallow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-target-allocator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3

- name: Read version
run: echo "VERSION=$(cat cmd/otel-allocator/version.txt)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
go-version: 1.17

- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3

- name: "install kubebuilder"
run: ./hack/install-kubebuilder.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
go-version: 1.17

- name: Check out code into the Go module directory
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3

- name: "install kuttl and kind"
run: ./hack/install-kuttl.sh
Expand Down

0 comments on commit f76dd87

Please sign in to comment.