Skip to content

Commit ddc83f2

Browse files
Bump actions/checkout from 3 to 4 (#2083)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- 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>
1 parent a7a9c95 commit ddc83f2

16 files changed

+20
-20
lines changed

.github/workflows/auto-update-java-agent.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
latest-version: ${{ steps.check-versions.outputs.latest-version }}
1515
already-opened: ${{ steps.check-versions.outputs.already-opened }}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- id: check-versions
2020
name: Check versions
@@ -49,7 +49,7 @@ jobs:
4949
needs:
5050
- check-versions
5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353

5454
- name: Update version
5555
env:

.github/workflows/changelog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout Repo
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333
- name: Setup Go

.github/workflows/continuous-integration.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
go-version: "1.21"
2222

2323
- name: Check out code into the Go module directory
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: "basic checks"
2727
run: make ci
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
go-version: "1.21"
3737
- name: Check out code into the Go module directory
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
- uses: actions/cache@v3
4141
with:
@@ -55,7 +55,7 @@ jobs:
5555
runs-on: ubuntu-20.04
5656
steps:
5757
- name: Check out code into the Go module directory
58-
uses: actions/checkout@v3
58+
uses: actions/checkout@v4
5959

6060
- name: Initialize CodeQL
6161
uses: github/codeql-action/init@v2

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: go install sigs.k8s.io/kind@v${KIND_VERSION}
4747

4848
- name: Check out code into the Go module directory
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050

5151
- name: "install kuttl"
5252
run: ./hack/install-kuttl.sh

.github/workflows/publish-autoinstrumentation-apache-httpd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-20.04
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626

2727
- name: Read version
2828
run: echo "VERSION=$(cat autoinstrumentation/apache-httpd/version.txt)" >> $GITHUB_ENV

.github/workflows/publish-autoinstrumentation-dotnet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-20.04
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626

2727
- name: Read version
2828
run: echo "VERSION=$(cat autoinstrumentation/dotnet/version.txt)" >> $GITHUB_ENV

.github/workflows/publish-autoinstrumentation-java.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-20.04
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
- name: Read version
2929
run: echo "VERSION=$(cat autoinstrumentation/java/version.txt)" >> $GITHUB_ENV

.github/workflows/publish-autoinstrumentation-nodejs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-20.04
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
- name: Read version
2929
run: echo VERSION=$(cat autoinstrumentation/nodejs/package.json | jq -r '.dependencies."@opentelemetry/sdk-node"') >> $GITHUB_ENV

.github/workflows/publish-autoinstrumentation-python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-20.04
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
- name: Read version
2929
run: echo VERSION=$(head -n 1 autoinstrumentation/python/requirements.txt | cut -d '=' -f3) >> $GITHUB_ENV

.github/workflows/publish-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Publish container images
1313
runs-on: ubuntu-20.04
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Unshallow
1818
run: git fetch --prune --unshallow

0 commit comments

Comments
 (0)