We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 514ae11 commit cac3366Copy full SHA for cac3366
.github/workflows/docker-image.yml
@@ -9,7 +9,7 @@ on:
9
pull_request:
10
branches: [ master ]
11
release:
12
- types: ["published"]
+ types: [published]
13
# Allows you to run this workflow manually from the Actions tab
14
workflow_dispatch:
15
inputs: {}
@@ -20,7 +20,7 @@ jobs:
20
build:
21
runs-on: ubuntu-22.04
22
steps:
23
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
24
with:
25
# Need tags for Makefile logic to work
26
fetch-depth: 0
@@ -32,7 +32,7 @@ jobs:
32
if: github.event_name == 'release' && github.event.action == 'published'
33
34
- name: Login to Docker Hub
35
- uses: docker/login-action@v2
+ uses: docker/login-action@v3
36
37
username: ${{ secrets.DOCKERHUB_USERNAME }}
38
password: ${{ secrets.DOCKERHUB_TOKEN }}
0 commit comments