Skip to content

Commit

Permalink
Merge pull request #127 from tegonal/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
robstoll authored Nov 5, 2023
2 parents e91946e + c757d9b commit 55d0ebc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cleanup Sources
run: ./scripts/cleanup-on-push-to-main.sh
- name: Create Pull Request if necessary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install shellcheck v0.9.0
run: ./lib/tegonal-scripts/src/ci/install-shellcheck.sh
- name: before-pr.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gt-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
false || gpg --import - <<< "${{ secrets.PUBLIC_GPG_KEYS_WE_TRUST }}" && success=true \
|| (echo "could not import GPG keys via secrets.PUBLIC_GPG_KEYS_WE_TRUST -- maybe it's not defined"; exit 1) && \
false || "${success:-false}" && echo "was able to import GPGs either via vars or secrets (or via both -- see above)"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install gt
run: |
set -e
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
false || gpg --import - <<< "${{ secrets.PUBLIC_GPG_KEYS_WE_TRUST }}" && success=true \
|| (echo "could not import GPG keys via secrets.PUBLIC_GPG_KEYS_WE_TRUST -- maybe it's not defined"; exit 1) && \
false || "${success:-false}" && echo "was able to import GPGs either via vars or secrets (or via both -- see above)"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check it works
run: |
tmpDir=$(mktemp -d -t gt-download-install-XXXXXXXXXX)
Expand All @@ -38,7 +38,7 @@ jobs:
false || gpg --import - <<< "${{ secrets.PUBLIC_GPG_KEYS_WE_TRUST }}" && success=true \
|| (echo "could not import GPG keys via secrets.PUBLIC_GPG_KEYS_WE_TRUST -- maybe it's not defined"; exit 1) && \
false || "${success:-false}" && echo "was able to import GPGs either via vars or secrets (or via both -- see above)"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check it works
run: ./install.doc.sh
- name: run self-update
Expand All @@ -58,7 +58,7 @@ jobs:
false || gpg --import - <<< "${{ secrets.PUBLIC_GPG_KEYS_WE_TRUST }}" && success=true \
|| (echo "could not import GPG keys via secrets.PUBLIC_GPG_KEYS_WE_TRUST -- maybe it's not defined"; exit 1) && \
false || "${success:-false}" && echo "was able to import GPGs either via vars or secrets (or via both -- see above)"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install ${{ matrix.tag }}
run: |
tmpDir=$(mktemp -d -t gt-download-install-XXXXXXXXXX)
Expand Down

0 comments on commit 55d0ebc

Please sign in to comment.