Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Use different names for the artifacts as required by upload-artifact@v4.

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and FlorianHockmann committed Apr 10, 2024
1 parent acac893 commit 395b9ae
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-backend-cql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,9 @@ jobs:
distribution: zulu
- run: mvn clean install --projects janusgraph-${{ matrix.module }} ${{ env.BUILD_MAVEN_OPTS }} ${{ matrix.install-args }}
- run: mvn verify --projects janusgraph-${{ matrix.module }} ${{ env.VERIFY_MAVEN_OPTS }} ${{ matrix.install-args }} ${{ matrix.args }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: jacoco-reports
name: jacoco-reports-${{ matrix.module }}-${{ matrix.name }}-java-${{ matrix.java }}-args-${{ matrix.args }}
path: target/jacoco-combined.exec
- uses: codecov/codecov-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-backend-hbase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ jobs:
distribution: zulu
- run: mvn clean install --projects janusgraph-${{ matrix.module }} ${{ env.BUILD_MAVEN_OPTS }} ${{ matrix.install-args }}
- run: mvn verify --projects janusgraph-${{ matrix.module }} ${{ env.VERIFY_MAVEN_OPTS }} ${{ matrix.install-args }} ${{ matrix.args }} -Dhbase.docker.uid=$(id -u) -Dhbase.docker.gid=$(id -g)
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: jacoco-reports
name: jacoco-reports-${{ matrix.module }}-${{ matrix.name }}-java-${{ matrix.java }}-args-${{ matrix.args }}
path: target/jacoco-combined.exec
- uses: codecov/codecov-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-backend-scylla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ jobs:
distribution: zulu
- run: mvn clean install --projects janusgraph-${{ matrix.module }} ${{ env.BUILD_MAVEN_OPTS }} ${{ matrix.install-args }}
- run: mvn verify --projects janusgraph-${{ matrix.module }} ${{ env.VERIFY_MAVEN_OPTS }} ${{ matrix.install-args }} ${{ matrix.args }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: jacoco-reports
name: jacoco-reports-${{ matrix.module }}-${{ matrix.name }}-java-${{ matrix.java }}-args-${{ matrix.args }}
path: target/jacoco-combined.exec
- uses: codecov/codecov-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ jobs:
distribution: zulu
- run: mvn clean install --projects janusgraph-${{ matrix.module }} ${{ env.BUILD_MAVEN_OPTS }} ${{ matrix.install-args }}
- run: mvn verify --projects janusgraph-${{ matrix.module }} ${{ env.VERIFY_MAVEN_OPTS }} ${{ matrix.install-args }} ${{ matrix.args }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: jacoco-reports
name: jacoco-reports-${{ matrix.module }}-java-${{ matrix.java }}
path: target/jacoco-combined.exec
- uses: codecov/codecov-action@v3
with:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,29 +62,29 @@ jobs:
- run: git diff --exit-code docs/configs/janusgraph-cfg.md
- run: docker build -t doc-site:mkdocs -f docs.Dockerfile .
- run: docker run --rm -v $PWD:/mkdocs doc-site:mkdocs mkdocs build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: github.ref != 'refs/heads/master'
with:
name: distribution-builds
name: distribution-doc-builds
path: site

deploy-doc:
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/master'
needs: build-doc
steps:
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- run: mkdir ./bin
- run: curl -sfL https://raw.githubusercontent.com/traefik/structor/master/godownloader.sh | bash -s -- -b ./bin ${STRUCTOR_VERSION}
- run: sudo ./bin/structor -o janusgraph -r janusgraph
--force-edit-url
--rqts-url="https://raw.githubusercontent.com/JanusGraph/janusgraph/master/requirements.txt"
--dockerfile-url="https://raw.githubusercontent.com/JanusGraph/janusgraph/master/docs.Dockerfile"
--dockerfile-name="https://raw.githubusercontent.com/JanusGraph/janusgraph/master/docs.Dockerfile"
--menu.js-url="https://raw.githubusercontent.com/JanusGraph/janusgraph/master/docs/theme/structor-menu.js.gotmpl"
- run: sudo ./bin/structor -o janusgraph -r janusgraph
--force-edit-url
--rqts-url="https://raw.githubusercontent.com/JanusGraph/janusgraph/master/requirements.txt"
--dockerfile-url="https://raw.githubusercontent.com/JanusGraph/janusgraph/master/docs.Dockerfile"
--dockerfile-name="https://raw.githubusercontent.com/JanusGraph/janusgraph/master/docs.Dockerfile"
--menu.js-url="https://raw.githubusercontent.com/JanusGraph/janusgraph/master/docs/theme/structor-menu.js.gotmpl"
--exp-branch=master --debug
- run: sudo chown -R $(id -u):$(id -g) .
- uses: JamesIves/github-pages-deploy-action@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-index-es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ jobs:
distribution: zulu
- run: mvn clean install --projects janusgraph-${{ matrix.module }} ${{ env.BUILD_MAVEN_OPTS }} ${{ matrix.install-args }}
- run: mvn verify --projects janusgraph-${{ matrix.module }} ${{ env.VERIFY_MAVEN_OPTS }} ${{ matrix.install-args }} ${{ matrix.args }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: jacoco-reports
name: jacoco-reports-${{ matrix.module }}-${{ matrix.name }}-java-${{ matrix.java }}-args-${{ matrix.args }}
path: target/jacoco-combined.exec
- uses: codecov/codecov-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-index-solr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ jobs:
distribution: zulu
- run: mvn clean install --projects janusgraph-${{ matrix.module }} ${{ env.BUILD_MAVEN_OPTS }} ${{ matrix.install-args }}
- run: mvn verify --projects janusgraph-${{ matrix.module }} ${{ env.VERIFY_MAVEN_OPTS }} ${{ matrix.install-args }} ${{ matrix.args }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: jacoco-reports
name: jacoco-reports-${{ matrix.module }}-${{ matrix.name }}-java-${{ matrix.java }}-args-${{ matrix.args }}
path: target/jacoco-combined.exec
- uses: codecov/codecov-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- run: sudo apt-get update && sudo apt-get install -y expect
- run: mvn clean install -Pjanusgraph-release ${{ env.BUILD_MAVEN_OPTS }} -Dgpg.skip=true ${{ matrix.args }}
- run: mvn verify -pl janusgraph-dist -Pjanusgraph-release -Dgpg.skip=true ${{ matrix.args }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: distribution-builds
path: janusgraph-dist/target/janusgraph-*.zip
Expand Down

0 comments on commit 395b9ae

Please sign in to comment.