Skip to content

Commit 4ccdf97

Browse files
Bump the actions group with 6 updates
Bumps the actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `5.1.0` | `5.2.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.32.4` | `4.32.6` | | [docker/login-action](https://github.com/docker/login-action) | `3.7.0` | `4.0.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5.10.0` | `6.0.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6.19.2` | `7.0.0` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3.7.0` | `4.0.0` | Updates `actions/setup-dotnet` from 5.1.0 to 5.2.0 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@baa11fb...c2fa09f) Updates `github/codeql-action` from 4.32.4 to 4.32.6 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@89a39a4...0d579ff) Updates `docker/login-action` from 3.7.0 to 4.0.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@c94ce9f...b45d80f) Updates `docker/metadata-action` from 5.10.0 to 6.0.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@c299e40...030e881) Updates `docker/build-push-action` from 6.19.2 to 7.0.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@10e90e3...d08e5c3) Updates `docker/setup-qemu-action` from 3.7.0 to 4.0.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@c7c5346...ce36039) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: github/codeql-action dependency-version: 4.32.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: docker/login-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/metadata-action dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-qemu-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 45a46f3 commit 4ccdf97

12 files changed

+21
-21
lines changed

.github/workflows/check-clog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: windows-latest
2121
steps:
2222
- name: Setup .NET
23-
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309
23+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
2424
with:
2525
dotnet-version: 10.0.x
2626
- name: Checkout repository

.github/workflows/check-dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: windows-latest
2121
steps:
2222
- name: Setup .NET
23-
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309
23+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
2424
with:
2525
dotnet-version: 10.0.x
2626
- name: Checkout repository

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
cmake --build . --target OpenSSL_Target
4848
4949
- name: Initialize CodeQL
50-
uses: github/codeql-action/init@89a39a4e59826350b863aa6b6252a07ad50cf83e
50+
uses: github/codeql-action/init@0d579ffd059c29b07949a3cce3983f0780820c98
5151
with:
5252
languages: cpp
5353
config-file: ./.github/codeql/codeql-config.yml
@@ -58,4 +58,4 @@ jobs:
5858
cmake --build .
5959
6060
- name: Perform CodeQL Analysis
61-
uses: github/codeql-action/analyze@89a39a4e59826350b863aa6b6252a07ad50cf83e
61+
uses: github/codeql-action/analyze@0d579ffd059c29b07949a3cce3983f0780820c98

.github/workflows/docker-publish-xcomp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# https://github.com/docker/login-action
4545
- name: Log into registry ${{ env.REGISTRY }}
4646
if: github.event_name != 'pull_request'
47-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
47+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2
4848
with:
4949
registry: ${{ env.REGISTRY }}
5050
username: ${{ github.actor }}
@@ -54,14 +54,14 @@ jobs:
5454
# https://github.com/docker/metadata-action
5555
- name: Extract Docker metadata
5656
id: meta
57-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051
57+
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf
5858
with:
5959
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6060

6161
# Build and push Docker image with Buildx (don't push on PR)
6262
# https://github.com/docker/build-push-action
6363
- name: Build and push Docker image
64-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8
64+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
6565
with:
6666
context: .docker/ubuntu-${{ matrix.version }}
6767
file: .docker/ubuntu-${{ matrix.version }}/Dockerfile

.github/workflows/docker-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# https://github.com/docker/login-action
3535
- name: Log into registry ${{ env.REGISTRY }}
3636
if: github.event_name != 'pull_request'
37-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
37+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2
3838
with:
3939
registry: ${{ env.REGISTRY }}
4040
username: ${{ github.actor }}
@@ -44,14 +44,14 @@ jobs:
4444
# https://github.com/docker/metadata-action
4545
- name: Extract Docker metadata
4646
id: meta
47-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051
47+
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf
4848
with:
4949
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
5050

5151
# Build and push Docker image with Buildx (don't push on PR)
5252
# https://github.com/docker/build-push-action
5353
- name: Build and push Docker image
54-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8
54+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
5555
with:
5656
context: .
5757
file: scripts/qns.Dockerfile

.github/workflows/dotnet-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
with:
100100
name: Debug-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}
101101
path: artifacts
102-
- uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309
102+
- uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
103103
with:
104104
dotnet-version: 10.0.x
105105
- name: Run Lang Interop

.github/workflows/package-alpine-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Checkout Repository
3535
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
3636
- name: Set up QEMU
37-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130
37+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a
3838
- name: Generate APKBUILD
3939
shell: pwsh
4040
run: |
@@ -71,9 +71,9 @@ jobs:
7171
name: ${{ matrix.vec.friendlyName }}-package
7272
path: artifacts
7373
- name: Set up QEMU
74-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130
74+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a
7575
- name: Set up .NET
76-
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309
76+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
7777
with:
7878
dotnet-version: 10.0.x
7979
- name: Build .NET QUIC Test Project (self-contained)

.github/workflows/package-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ jobs:
149149
name: ${{ matrix.vec.config }}-linux-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}-UseSystemOpenSSLCrypto${{ matrix.vec.xdp }}
150150
path: artifacts
151151
- name: Set up QEMU
152-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130
152+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a
153153
- name: Set up .NET
154-
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309
154+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
155155
with:
156156
dotnet-version: 10.0.x
157157
- name: Build .NET QUIC Test Projects (Self-Contained)

.github/workflows/plugins.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Checkout repository
5252
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
5353
- name: Setup .NET
54-
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309
54+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
5555
with:
5656
dotnet-version: 10.0.x
5757
- name: Install Dependencies

.github/workflows/publish-docfx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Checkout
3232
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
3333
- name: Dotnet Setup
34-
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309
34+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
3535
with:
3636
dotnet-version: 10.0.x
3737

0 commit comments

Comments
 (0)