Skip to content

Commit

Permalink
[GitHub] - Prepare workflows for Ubuntu 24 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanel committed Jun 9, 2024
1 parent cdbcddf commit b9708a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push latest
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
push: true
tags: sjanel/coincenter:latest

- name: Build and push alpine
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: alpine.Dockerfile
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-special.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
ubuntu-special-build:
name: Build on Ubuntu with monitoring / protobuf support
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
compiler: [g++-11]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
ubuntu-build:
name: Build on Ubuntu
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
compiler: [g++-11, clang++-18]
Expand Down

0 comments on commit b9708a7

Please sign in to comment.