Skip to content

Commit

Permalink
Merge #2894 into 2.0.0-M4
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg committed Sep 5, 2023
2 parents fa18b61 + 649c5f1 commit dbffbf6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_netty_snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
transport: native

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/check_transport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
# name: preliminary sanity checks
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0 #needed by spotless
# - uses: actions/setup-java@v3
Expand Down Expand Up @@ -53,23 +53,23 @@ jobs:
- os: macos-11
transport: native
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: reactor-netty
fetch-depth: 0 #needed by spotless
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# with:
# repository: netty-contrib/codec-haproxy
# path: codec-haproxy
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# with:
# repository: netty-contrib/codec-extras
# path: codec-extras
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: netty-contrib/socks-proxy
path: socks-proxy
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: netty-contrib/codec-multipart
path: codec-multipart
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
versionType: ${{ steps.version.outputs.versionType }}
fullVersion: ${{ steps.version.outputs.fullVersion }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup java
uses: actions/setup-java@v3
with:
Expand All @@ -37,7 +37,7 @@ jobs:
name: reactor-netty-http
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup java
uses: actions/setup-java@v3
with:
Expand All @@ -52,7 +52,7 @@ jobs:
# name: reactor-netty-incubator-quic
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - name: setup java
# uses: actions/setup-java@v3
# with:
Expand All @@ -71,7 +71,7 @@ jobs:
if: needs.reactor-netty-core.outputs.versionType == 'SNAPSHOT'
environment: snapshots
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
Expand All @@ -92,7 +92,7 @@ jobs:
if: needs.reactor-netty-core.outputs.versionType == 'MILESTONE'
environment: releases
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
Expand All @@ -115,7 +115,7 @@ jobs:
if: needs.reactor-netty-core.outputs.versionType == 'RELEASE'
environment: releases
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
Expand All @@ -138,7 +138,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: tag
run: |
git config --local user.name 'reactorbot'
Expand All @@ -153,7 +153,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: tag
run: |
git config --local user.name 'reactorbot'
Expand Down

0 comments on commit dbffbf6

Please sign in to comment.