Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 in /.github/workflows #221

Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
curl
mingw-w64-x86_64-curl

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
~/.cache/yarn
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: ${{ runner.os }}-gradle-
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Pages
run: ../gradlew assemble
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
mingw-w64-x86_64-curl
curl

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ matrix.repository.enabled == true }}

- uses: actions/setup-java@v3
Expand Down Expand Up @@ -134,6 +134,6 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Change pre-release status
run: gh release edit ${{ needs.resolve-version.outputs.version }} --prerelease=false
2 changes: 1 addition & 1 deletion .github/workflows/resolve-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
version: ${{ steps.resolve.outputs.version }}
snapshot: ${{ steps.resolve.outputs.snapshot }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Resolve
id: resolve
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
mingw-w64-x86_64-extra-cmake-modules
mingw64/mingw-w64-x86_64-cyrus-sasl

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ startsWith(matrix.os.runner, github.event.inputs.runner) }}

- name: Restore libmongoc cache
Expand Down
Loading