Skip to content

Commit a6a2bd3

Browse files
Bump the gh-actions-packages group across 4 directories with 5 updates
Bumps the gh-actions-packages group with 2 updates in the / directory: [ruby/setup-ruby](https://github.com/ruby/setup-ruby) and [github/codeql-action](https://github.com/github/codeql-action). Bumps the gh-actions-packages group with 1 update in the /.github/actions/build-test directory: [actions/upload-artifact](https://github.com/actions/upload-artifact). Bumps the gh-actions-packages group with 2 updates in the /.github/actions/bundle-cache directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/cache](https://github.com/actions/cache). Bumps the gh-actions-packages group with 2 updates in the /.github/actions/bundle-restore directory: [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/cache](https://github.com/actions/cache). Updates `ruby/setup-ruby` from 1.222.0 to 1.224.0 - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](ruby/setup-ruby@277ba2a...bbda858) Updates `github/codeql-action` from 3.28.10 to 3.28.11 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b56ba49...6bb031a) Updates `actions/upload-artifact` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@65c4c4a...4cec3d8) Updates `actions/upload-artifact` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@65c4c4a...4cec3d8) Updates `actions/cache` from 4.2.0 to 4.2.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@1bd1e32...d4323d4) Updates `actions/download-artifact` from 4.1.8 to 4.1.9 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@fa0a91b...cc20338) Updates `actions/cache` from 4.2.0 to 4.2.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@1bd1e32...d4323d4) --- updated-dependencies: - dependency-name: ruby/setup-ruby dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions-packages - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions-packages - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions-packages - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions-packages - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions-packages - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions-packages - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions-packages ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9ea35ba commit a6a2bd3

10 files changed

+20
-20
lines changed

.github/actions/build-test/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ runs:
4747

4848
- name: Upload junit reports
4949
if: ${{ !cancelled() }}
50-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
50+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
5151
with:
5252
name: junit-${{ inputs.alias }}-${{ inputs.container-id }}
5353
path: tmp/rspec/*.xml
5454

5555
- name: Upload coverage data
56-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
56+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
5757
with:
5858
name: coverage-${{ inputs.alias }}-${{ inputs.container-id }}
5959
path: coverage

.github/actions/bundle-cache/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ runs:
2929
bundle lock
3030
echo "lockfile=$LOCKFILE" >> "$GITHUB_OUTPUT"
3131
- name: Upload lockfile
32-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
32+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
3333
with:
3434
name: ${{ steps.lockfile.outputs.lockfile }}
3535
path: "*.lock"
3636
- name: Restore cache
37-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
37+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
3838
id: restore-cache
3939
with:
4040
key: bundle-${{ runner.os }}-${{ runner.arch }}-${{ steps.ruby-alias.outputs.ruby-alias }}-${{ hashFiles('*.lock') }}
@@ -44,7 +44,7 @@ runs:
4444
run: bundle install
4545
- if: steps.restore-cache.outputs.cache-hit != 'true'
4646
name: Save cache
47-
uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
47+
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
4848
with:
4949
key: "${{ steps.restore-cache.outputs.cache-primary-key }}"
5050
path: "/usr/local/bundle"

.github/actions/bundle-restore/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ runs:
1515
using: composite
1616
steps:
1717
- name: Download lockfile
18-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
18+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
1919
with:
2020
name: ${{ inputs.lockfile }}
2121

2222
- name: Restore cache
23-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
23+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
2424
id: restore-cache
2525
with:
2626
key: "${{ inputs.cache-key }}"

.github/workflows/build-gem.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3737
with:
3838
persist-credentials: false
39-
- uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
39+
- uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
4040
with:
4141
ruby-version: '3.2'
4242
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
@@ -87,7 +87,7 @@ jobs:
8787
- name: List gem
8888
run: |
8989
find pkg
90-
- uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
90+
- uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
9191
with:
9292
ruby-version: '3.2'
9393
- name: Install gem

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
# Initializes the CodeQL tools for scanning.
3636
- name: Initialize CodeQL
37-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
37+
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
3838
with:
3939
languages: ${{ matrix.language }}
4040
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -45,10 +45,10 @@ jobs:
4545
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4646
# If this step fails, then you should remove it and run the build manually
4747
- name: Autobuild
48-
uses: github/codeql-action/autobuild@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
48+
uses: github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
4949

5050
- name: Perform CodeQL Analysis
51-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
51+
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
5252

5353
complete:
5454
name: CodeQL (complete)

.github/workflows/generate-supported-versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
persist-credentials: false
2020

2121
- name: Set up Ruby
22-
uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
22+
uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
2323
with:
2424
ruby-version: "3.3"
2525

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121
with:
2222
persist-credentials: false
23-
- uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
23+
- uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
2424
with:
2525
ruby-version: '3.3.7'
2626

@@ -117,7 +117,7 @@ jobs:
117117
with:
118118
persist-credentials: false
119119
- name: Set up Ruby
120-
uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
120+
uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
121121
with:
122122
ruby-version: '3.3.7'
123123
- run: bundle install
@@ -161,7 +161,7 @@ jobs:
161161
persist-credentials: false
162162
fetch-depth: 0
163163
- name: Set up Ruby
164-
uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
164+
uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
165165
with:
166166
ruby-version: '3.3.7'
167167
- run: bundle install

.github/workflows/test-macos.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# head rubies
4444
- if: ${{ matrix.ruby == 'head' }}
4545
run: sed -i~ -e '/spec\.required_ruby_version/d' datadog.gemspec
46-
- uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
46+
- uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
4747
with:
4848
ruby-version: ${{ matrix.ruby }}
4949
rubygems: 3.3.26

.github/workflows/test-memory-leaks.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919
with:
2020
persist-credentials: false
21-
- uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
21+
- uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
2222
with:
2323
ruby-version: 3.4.1
2424
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3434
with:
3535
persist-credentials: false
36-
- uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # Adds 3.4-asan builds
36+
- uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # Adds 3.4-asan builds
3737
with:
3838
ruby-version: 3.4-asan
3939
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

.github/workflows/test-yjit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# head rubies
5050
- if: ${{ matrix.ruby == 'head' }}
5151
run: sed -i~ -e '/spec\.required_ruby_version/d' datadog.gemspec
52-
- uses: ruby/setup-ruby@277ba2a127aba66d45bad0fa2dc56f80dbfedffa # v1.222.0
52+
- uses: ruby/setup-ruby@bbda85882f33075a3727c01e3c8d0de0be6146ce # v1.224.0
5353
with:
5454
ruby-version: ${{ matrix.ruby }}
5555
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

0 commit comments

Comments
 (0)