Skip to content

Commit

Permalink
upgrading actions-checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
acdouglas00 committed Mar 28, 2024
1 parent 0e3b155 commit 176973d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build Image
run: docker build -t discovery_ui:build .
- name: Publish Dev Image
Expand All @@ -35,7 +35,7 @@ jobs:
if: github.event_name == 'release'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build Image
run: docker build -t discovery_ui:build .
- name: Publish Tagged Image
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build Image
run: docker build .

0 comments on commit 176973d

Please sign in to comment.