Skip to content

Commit

Permalink
Update GitHub Actions (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
ValMati authored Mar 15, 2024
1 parent d062916 commit 3eab003
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:
steps:

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'zulu' # Alternative distribution options are available.

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
global-json-file: ./global.json

Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
echo "docker_image=${DOCKER_IMAGE}" >> $GITHUB_OUTPUT
- name: Build docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: false
platforms: linux/amd64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '0'

Expand Down Expand Up @@ -42,14 +42,14 @@ jobs:
echo "docker_image=${DOCKER_IMAGE}" >> $GITHUB_OUTPUT
- name: Login to ACR
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.IMGREG_ENDPOINT }}
username: ${{ secrets.IMGREG_USERNAME }}
password: ${{ secrets.IMGREG_PASSWORD }}

- name: Build and push docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.100"
"version": "8.0.203"
}
}

0 comments on commit 3eab003

Please sign in to comment.