Skip to content

Commit

Permalink
dependabot: bump actions/checkout from 3 to 4 (opensearch-project#3340)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to
4.

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 13, 2023
1 parent 1c0a050 commit 88f0272
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Get tag
id: tag
uses: dawidd6/action-get-tag@v1
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1
with:
github_token: ${{ steps.github_app_token.outputs.token }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
java-version: 17

- name: Checkout security
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Generate list of tasks
id: set-matrix
Expand All @@ -50,7 +50,7 @@ jobs:
java-version: ${{ matrix.jdk }}

- name: Checkout security
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build and Test
uses: gradle/gradle-build-action@v2
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
java-version: ${{ matrix.jdk }}

- name: Checkout security
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build and Test
uses: gradle/gradle-build-action@v2
Expand All @@ -123,7 +123,7 @@ jobs:
java-version: ${{ matrix.jdk }}

- name: Checkout Security Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: build-previous
uses: ./.github/actions/run-bwc-suite
Expand All @@ -137,7 +137,7 @@ jobs:
code-ql:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: temurin # Temurin is a distribution of adoptium
Expand All @@ -151,7 +151,7 @@ jobs:
build-artifact-names:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/code-hygiene.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Check if all files end in newline
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Linelint
uses: fernandrone/[email protected]
Expand All @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
name: Spotless scan
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
name: Checkstyle scan
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
name: Spotbugs scan
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
name: Check permissions orders
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm install yaml

- name: Check permissions order
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
distribution: temurin # Temurin is a distribution of adoptium
java-version: ${{ matrix.jdk }}

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

- run: OPENDISTRO_SECURITY_TEST_OPENSSL_OPT=true ./gradlew test

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
distribution: temurin # Temurin is a distribution of adoptium
java-version: 11
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: aws-actions/configure-aws-credentials@v3
with:
role-to-assume: ${{ secrets.PUBLISH_SNAPSHOTS_ROLE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
java-version: ${{ matrix.jdk }}

- name: Checkout Branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Assemble target plugin
uses: gradle/gradle-build-action@v2
Expand Down

0 comments on commit 88f0272

Please sign in to comment.