Skip to content

Commit

Permalink
[TASK] Update all GitHub-Actions on main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dkd-kaehm committed May 8, 2024
1 parent c1a914e commit f4f0768
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
-
name: Checkout current state of Pull Request
if: github.event_name == 'pull_request'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
-
name: Checkout current state of Branch
if: github.event_name == 'push'
uses: actions/checkout@v3
uses: actions/checkout@v4
# End: Workaround for issue with actions/checkout...
-
name: "Resolve target branch of pull request."
Expand Down Expand Up @@ -72,10 +72,10 @@ jobs:
echo "matrix=$(echo $matrix)" >> $GITHUB_OUTPUT
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Build Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: ./Docker/SolrServer/Dockerfile
Expand All @@ -91,7 +91,7 @@ jobs:
./Build/Test/cibuild_docker.sh
-
name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: solrci-image
path: /tmp/solrci-image.tar
Expand All @@ -115,14 +115,14 @@ jobs:
-
name: Checkout current state of Pull Request
if: github.event_name == 'pull_request'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
ref: ${{ github.event.pull_request.head.sha }}
-
name: Checkout current state of Branch
if: github.event_name == 'push'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
# End: Workaround for issue with actions/checkout...
Expand All @@ -136,10 +136,10 @@ jobs:
&& sudo chown 8983:8983 ${{ env.CI_BUILD_DIRECTORY }}/data-solr
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Download solrci-image from "ci_bootstrapping" job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: solrci-image
path: /tmp
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
steps:
-
name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
-
Expand Down

0 comments on commit f4f0768

Please sign in to comment.