Skip to content

Commit

Permalink
build: update workflows actions versions (Soluto#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
AleF83 authored Nov 11, 2022
1 parent ebb5911 commit 947a4c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ concurrency:
cancel-in-progress: true

env:
TILT_VERSION: '0.30.0'
TILT_VERSION: '0.30.11'

jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Tilt
uses: yokawasa/action-setup-kube-tools@v0.8.0
uses: yokawasa/action-setup-kube-tools@v0.9.2
with:
setup-tools: |
tilt
tilt: ${{ env.TILT_VERSION }}

- uses: actions/setup-node@v2-beta
- uses: actions/setup-node@v3
with:
node-version: '16'

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Login to GHCR
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.ORG_CR_WRITER_USER }}
Expand All @@ -24,15 +24,15 @@ jobs:

- id: repository_owner
name: Format repository owner
uses: ASzc/change-string-case-action@v1
uses: ASzc/change-string-case-action@v5
with:
string: ${{ github.repository_owner }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2

- name: Build and push new docker image
uses: docker/build-push-action@v3
Expand Down

0 comments on commit 947a4c2

Please sign in to comment.