Skip to content

Commit

Permalink
test: bump actions
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Nov 28, 2022
1 parent 68601a2 commit 5e50a71
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
done | head -c-1
)"
echo tags="${TAGS//$'\n'/'%0A'}" >> $GITHUB_OUTPUT
- uses: docker/setup-buildx-action@v1
- uses: docker/setup-buildx-action@v2
- uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
Expand All @@ -81,17 +81,17 @@ jobs:
github.sha }}
restore-keys:
${{ runner.os }}-buildx-${{ steps.metadata.outputs.cache_tag }}-
- uses: docker/login-action@v1
- uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- uses: docker/login-action@v1
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}
- uses: docker/build-push-action@v2
- uses: docker/build-push-action@v3
with:
push:
${{ inputs.release || github.event_name == 'push' ||
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
- run: npm ci
- run: npm run lint
test:
Expand All @@ -44,7 +44,7 @@ jobs:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
- uses: actions/setup-python@v2
with:
python-version: 3.9
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- if: matrix.system == 'windows'
uses: actions/setup-node@v2
uses: actions/setup-node@v3
- name: install
shell: bash
run: |
Expand All @@ -97,7 +97,7 @@ jobs:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org
- run: npm install
Expand Down

2 comments on commit 5e50a71

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

Please sign in to comment.