Skip to content

Commit 059c08b

Browse files
authored
Merge pull request #258 from github/djdefi-focal-docker
Ubuntu Focal for Docker image to better match Actions CI
2 parents 51fc2cb + 0337f6a commit 059c08b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Build the Debian Docker image
18-
run: docker build . --file Dockerfile --tag backup-utils-debian:${GITHUB_RUN_ID}
18+
run: docker build . --file Dockerfile --tag backup-utils:${GITHUB_RUN_ID}
1919
- name: Build the Alpine Docker image
2020
run: docker build . --file Dockerfile.alpine --tag backup-utils-alpine:${GITHUB_RUN_ID}
2121
- name: Run tests in Debian Docker image
22-
run: docker run backup-utils-debian:${GITHUB_RUN_ID} ghe-backup --version
22+
run: docker run backup-utils:${GITHUB_RUN_ID} ghe-backup --version
2323
- name: Run tests in Alpine Docker image
2424
run: docker run backup-utils-alpine:${GITHUB_RUN_ID} ghe-backup --version
2525

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
os: ['ubuntu-22.04', 'ubuntu-20.04', 'ubuntu-18.04', 'macos-latest']
9+
os: ['ubuntu-22.04', 'ubuntu-20.04', 'macos-latest']
1010
fail-fast: false
1111
runs-on: ${{ matrix.os }}
1212
steps:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:buster-slim
1+
FROM ubuntu:focal
22

33
RUN apt-get -q -y update && \
44
apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)