Skip to content

Commit

Permalink
More CI bitrot fixes (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjyw authored Apr 9, 2024
1 parent 1a7c3bc commit 5d0b58d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ jobs:
echo 'PANTS_CONFIG_FILES=+["${{ github.workspace }}/pants.ci.toml"]' >> ${GITHUB_ENV}
- name: Pants Bootstrap
run: pants version
- name: show toolchain token
if: github.event_name == 'push'
run: pants auth-token-info --auth-token-info-verbose
- name: Lint & check
run: |
pants lint check ::
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
publish-dockerhub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
- name: Build & Publish nightly smoketest
id: docker_build_smoketest
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
build-args: APP_NAME=smoketest
tags: toolchainlabs/remote-api-tools-smoketest:nightly
Expand All @@ -24,7 +24,7 @@ jobs:
run: echo ${{ steps.docker_build_smoketest.outputs.digest }}
- name: Build & Publish nightly casload
id: docker_build_casload
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
build-args: APP_NAME=casload
tags: toolchainlabs/remote-api-tools-casload:nightly
Expand Down

0 comments on commit 5d0b58d

Please sign in to comment.