Skip to content

Commit bad85f3

Browse files
build(deps): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `2.4.0` | `3.0.0` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [docker/login-action](https://github.com/docker/login-action) | `3.4.0` | `3.6.0` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/attest-build-provenance` from 2.4.0 to 3.0.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](actions/attest-build-provenance@e8998f9...977bb37) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `docker/login-action` from 3.4.0 to 3.6.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@74a5d14...5e57cd1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/attest-build-provenance dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 951c264 commit bad85f3

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141
package:
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
- uses: ruby/setup-ruby@v1
4646
with:
4747
ruby-version: 2.6
4848
- name: Install build system
4949
run: .ci/scripts/install-build-system.sh
5050
- name: Create gem
5151
run: rake build
52-
- uses: actions/upload-artifact@v4
52+
- uses: actions/upload-artifact@v5
5353
with:
5454
name: package
5555
path: ./pkg/**/*

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: write
1919
id-token: write
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- uses: ruby/setup-ruby@v1
2323
with:
2424
ruby-version: 2.6
@@ -43,7 +43,7 @@ jobs:
4343
if: ${{ ! startsWith(github.ref, 'refs/tags') }}
4444

4545
- name: generate build provenance
46-
uses: actions/attest-build-provenance@e8998f949152b193b063cb0ec769d69d929409be # v2.4.0
46+
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
4747
with:
4848
subject-path: "${{ github.workspace }}/pkg/*.gem"
4949

@@ -54,7 +54,7 @@ jobs:
5454
permissions:
5555
contents: write
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858
- uses: ruby/setup-ruby@v1
5959
with:
6060
ruby-version: 2.6

.github/workflows/run-matrix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
outputs:
2525
matrix: ${{ steps.generate.outputs.matrix }}
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- id: generate
2929
uses: elastic/oblt-actions/version-framework@v1
3030
with:
@@ -40,7 +40,7 @@ jobs:
4040
max-parallel: 20
4141
matrix: ${{ fromJSON(needs.create-test-matrix.outputs.matrix) }}
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
- name: Run BDD tests
4545
run: ./spec/scripts/features.sh ${{ matrix.version }}
4646
- name: Run test
@@ -50,7 +50,7 @@ jobs:
5050

5151
- if: success() || failure()
5252
id: normalize-junit
53-
uses: actions/github-script@v7
53+
uses: actions/github-script@v8
5454
with:
5555
result-encoding: string
5656
script: |
@@ -62,7 +62,7 @@ jobs:
6262
return `${version}-${framework}`
6363
- if: success() || failure()
6464
name: Upload JUnit Test Results
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v5
6666
with:
6767
name: test-results-${{ steps.normalize-junit.outputs.result }}
6868
path: "**/spec/junit-reports/**/*ruby-agent-junit.xml"

.github/workflows/updatecli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: read
1616
packages: read
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Get token
2121
id: get_token
@@ -29,7 +29,7 @@ jobs:
2929
"pull_requests": "write"
3030
}
3131
32-
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
32+
- uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
3333
with:
3434
registry: ghcr.io
3535
username: ${{ github.actor }}

0 commit comments

Comments
 (0)