Skip to content

Commit b9837bf

Browse files
ci(deps): bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/setup-dotnet](https://github.com/actions/setup-dotnet), [github/codeql-action](https://github.com/github/codeql-action), [ruby/setup-ruby](https://github.com/ruby/setup-ruby) and [MarcoIeni/release-plz-action](https://github.com/marcoieni/release-plz-action). Updates `actions/setup-dotnet` from 5.2.0 to 5.3.0 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@c2fa09f...9a946fd) Updates `github/codeql-action` from 4.35.2 to 4.36.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@95e58e9...8aad20d) Updates `ruby/setup-ruby` from 1.306.0 to 1.312.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@c4e5b13...12fd324) Updates `MarcoIeni/release-plz-action` from 0.5.128 to 0.5.130 - [Release notes](https://github.com/marcoieni/release-plz-action/releases) - [Commits](release-plz/action@1528104...e879257) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: 5.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.36.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: MarcoIeni/release-plz-action dependency-version: 0.5.129 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: ruby/setup-ruby dependency-version: 1.310.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 ed6ae46 commit b9837bf

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105

106106
- name: Setup .NET
107107
if: matrix.language == 'csharp'
108-
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
108+
uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
109109
with:
110110
global-json-file: ./bindings/csharp/global.json
111111

@@ -120,7 +120,7 @@ jobs:
120120
node-version: '18'
121121

122122
- name: Initialize CodeQL
123-
uses: github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
123+
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
124124
with:
125125
languages: ${{ matrix.language }}
126126
build-mode: ${{ matrix.build-mode }}
@@ -141,7 +141,7 @@ jobs:
141141
142142
- name: Setup Ruby
143143
if: matrix.language == 'rust' && contains(matrix.working-directory, 'ruby')
144-
uses: ruby/setup-ruby@c4e5b1316158f92e3d49443a9d58b31d25ac0f8f # v1.306.0
144+
uses: ruby/setup-ruby@12fd324f1d0b43274fdc8130f6980590a667c455 # v1.312.0
145145
with:
146146
ruby-version: '3.4.2'
147147
bundler-cache: true
@@ -188,6 +188,6 @@ jobs:
188188
run: cargo xtask build-wasm --release
189189

190190
- name: Perform CodeQL Analysis
191-
uses: github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
191+
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
192192
with:
193193
category: "/language:${{matrix.language}}"

.github/workflows/release-plz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Rust toolchain
2424
uses: ./.github/actions/toolchains/rust
2525
- name: Run release-plz
26-
uses: MarcoIeni/release-plz-action@1528104d2ca23787631a1c1f022abb64b34c1e11 # v0.5.128
26+
uses: MarcoIeni/release-plz-action@e8792575c7f2366cf6ff3ccc33ead9ace5b691c7 # v0.5.130
2727
env:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

.github/workflows/rust-clippy.yml

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

5353
- name: Upload analysis results to GitHub
5454
if: ${{ hashFiles('rust-clippy-results.sarif') != '' }}
55-
uses: github/codeql-action/upload-sarif@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v3.29.11
55+
uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v3.29.11
5656
with:
5757
sarif_file: rust-clippy-results.sarif
5858
wait-for-processing: true

.github/workflows/test-csharp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
with:
7878
fetch-depth: 0
7979
- uses: ./.github/actions/toolchains/rust
80-
- uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
80+
- uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
8181
with:
8282
global-json-file: ./bindings/csharp/global.json
8383

@@ -137,7 +137,7 @@ jobs:
137137

138138
- uses: ./.github/actions/toolchains/rust
139139

140-
- uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
140+
- uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
141141
with:
142142
global-json-file: ./bindings/csharp/global.json
143143

0 commit comments

Comments
 (0)