Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-tracecontext-testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3.3.0

- name: Login to GitHub Package Registry
uses: docker/login-action@v1
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 @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3.3.0

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
name: "Gradle wrapper validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3.3.0
- uses: gradle/wrapper-validation-action@v1
4 changes: 2 additions & 2 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
test-java-version: 17
coverage: true
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3.3.0
with:
fetch-depth: 0
- id: setup-java-8
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
needs: build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3.3.0
with:
fetch-depth: 0
- id: setup-java-11
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/patch-release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
- id: checkout-release-branch
name: Check out release branch
continue-on-error: true
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3.3.0
with:
ref: ${{ steps.parse-release-branch.outputs.release-branch-name }}
- id: checkout-release-tag
name: Check out release tag
if: ${{ steps.checkout-release-branch.outcome == 'failure' }}
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3.3.0
with:
ref: ${{ steps.parse-release-branch.outputs.release-tag-name }}
- name: Create release branch
Expand All @@ -46,7 +46,7 @@ jobs:
needs: prepare-release-branch
steps:
- name: Checkout release branch
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3.3.0
with:
ref: ${{ needs.prepare-release-branch.outputs.release-branch-name }}
- uses: actions/setup-java@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
test-java-version: 11
coverage: true
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3.3.0
with:
fetch-depth: 0
- id: setup-java-8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-examples-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- macos-latest
- ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3.3.0
- name: Setup Java 17
uses: actions/setup-java@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build and release
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3.3.0
- uses: actions/setup-java@v2
with:
distribution: adopt
Expand Down