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] <[email protected]> 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

+2-2
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

+1-1
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

+3-3
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

.github/workflows/publish-operator-bundle.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-22.04
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Docker meta
2222
id: docker_meta

.github/workflows/publish-operator-opamp-bridge.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-20.04
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Read version
2222
run: |

.github/workflows/publish-target-allocator.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-20.04
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Read version
2222
run: |

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
go-version: "1.21"
1414

15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: "generate release resources"
1818
run: make release-artifacts IMG_PREFIX="ghcr.io/open-telemetry/opentelemetry-operator"

.github/workflows/reusable-operator-hub-release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
--force
3838
3939
- name: Checkout operatorhub repo
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
with:
4242
repository: opentelemetrybot/${{ inputs.repo }}
4343
token: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
4444

4545
- name: Checkout opentelemetry-operator to tmp/ directory
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
with:
4848
repository: open-telemetry/opentelemetry-operator
4949
token: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}

.github/workflows/scorecard.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: go install sigs.k8s.io/kind@v${KIND_VERSION}
3838

3939
- name: Check out code into the Go module directory
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141

4242
- name: "install kuttl and kind"
4343
run: ./hack/install-kuttl.sh

0 commit comments

Comments
 (0)