Skip to content

Commit 948d67b

Browse files
authored
Update Docker image to 29.1 to match Github actions (#1)
1 parent 3e77f18 commit 948d67b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
smoke-test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v6
1414
- name: Run docker action and set output for testing
1515
uses: ./
1616
id: run-docker
@@ -29,7 +29,7 @@ jobs:
2929
volume-mount-test:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v6
3333
- name: Create File to be mounted
3434
run: echo "some text" > someFile
3535
- name: Run docker action with mounted workspace
@@ -41,7 +41,7 @@ jobs:
4141
run: |
4242
echo "::set-output name=file-contents::`cat /work/someFile`"
4343
- name: Check if file contents match
44-
uses: actions/github-script@v3
44+
uses: actions/github-script@v8
4545
with:
4646
script: |
4747
const fileContents = '${{ steps.run-docker.outputs.file-contents }}';
@@ -61,7 +61,7 @@ jobs:
6161
- 5432:5432
6262
options: --health-cmd pg_isready --health-interval 5s --health-timeout 5s --health-retries 10
6363
steps:
64-
- uses: actions/checkout@v2
64+
- uses: actions/checkout@v6
6565
- name: Run docker action and test network connection
6666
uses: ./
6767
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker:20.10
1+
FROM docker:29.1
22

33
RUN apk add bash
44

0 commit comments

Comments
 (0)