Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 11, 2024
1 parent abfebac commit 2a8ec36
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Log Workflow Information
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Git Revision"
run: echo "${GITHUB_REF}"
- name: "Github Event"
Expand All @@ -33,7 +33,7 @@ jobs:
name: "Test: Create Minimal Image"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Obtain Installer
run: .github/scripts/build-installer-image.sh
# TODO: Can the separate jobs share this image?
Expand All @@ -47,7 +47,7 @@ jobs:
name: "Test: Run Usage Examples"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Obtain Installer
run: .github/scripts/build-installer-image.sh
- name: "Build Test Image"
Expand All @@ -73,7 +73,7 @@ jobs:
- test-run-examples
if: startsWith(github.ref, 'refs/tags/pre-') || startsWith(github.ref, 'refs/tags/release-')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Obtain Installer
run: .github/scripts/build-installer-image.sh
- name: Build images
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Make Release Tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # need to get the tags, cf. https://github.com/actions/checkout/issues/701
- name: Obtain Installer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-dockerhub-info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Log Workflow Information
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Git Revision"
run: echo "${GITHUB_REF}"
- name: "Github Event"
Expand All @@ -23,7 +23,7 @@ jobs:
name: Update Info
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Push Info to Repos"
env:
DOCKERHUB_USER_NAME: "reitzig"
Expand Down

0 comments on commit 2a8ec36

Please sign in to comment.