Skip to content

Commit 88bbc86

Browse files
Bump actions/checkout from 3 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d292624 commit 88bbc86

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/codeql.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/integration-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
APP_PATH: sample-apps/${{ matrix.instrumentation-type}}-instrumentation/${{ matrix.app-platform }}
2020
steps:
2121
- name: Checkout This Repo
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v5
2323
- name: Configure AWS Credentials
2424
uses: aws-actions/configure-aws-credentials@v1
2525
with:

.github/workflows/pr-build-gems.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: "${{ matrix.gem }} / ${{ matrix.os }}"
2626
runs-on: ${{ matrix.os }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: "Test Ruby 3.4"
3030
uses: ./.github/actions/test_gem
3131
with:

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
APP_PATH: sample-apps/${{ matrix.instrumentation-type}}-instrumentation/${{ matrix.app-platform }}
1616
steps:
1717
- name: Checkout This Repo
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v5
1919
- name: Set up Docker Buildx
2020
uses: docker/setup-buildx-action@v2
2121
- name: Cache Docker layers

.github/workflows/release-udp-exporter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
needs: validate-udp-exporter-e2e-test
2727
steps:
2828
- name: Checkout Repo @ SHA - ${{ github.sha }}
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
# Install ruby and bundle dependencies and cache!
3232
- name: Install Ruby ${{ env.RUBY_VERSION }} with dependencies

.github/workflows/soak-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: |
6969
echo "$TEST_DURATION_MINUTES" | tee --append $GITHUB_ENV;
7070
- name: Clone This Repo @ ${{ env.TARGET_SHA }}
71-
uses: actions/checkout@v3
71+
uses: actions/checkout@v5
7272
with:
7373
ref: ${{ env.TARGET_SHA }}
7474

.github/workflows/udp-exporter-e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout Repo @ SHA - ${{ github.sha }}
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
# Install ruby and bundle dependencies and cache!
2222
- name: Install Ruby ${{ env.RUBY_VERSION }} with dependencies

0 commit comments

Comments
 (0)