Skip to content
This repository was archived by the owner on Mar 10, 2024. It is now read-only.

Commit ca5dafa

Browse files
Use carton 0.17.0 in Dockerfile
1 parent 6326ecf commit ca5dafa

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/push.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ jobs:
88
name: Push Docker image to GitHub Packages
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Set up Docker Buildx
13-
uses: docker/setup-buildx-action@v1
13+
uses: docker/setup-buildx-action@v2
1414
- name: Login to DockerHub
15-
uses: docker/login-action@v1
15+
uses: docker/login-action@v2
1616
with:
1717
registry: ghcr.io
18-
username: ${{ github.repository_owner }}
19-
password: ${{ secrets.PAT }}
18+
username: ${{ github.actor }}
19+
password: ${{ secrets.GITHUB_TOKEN }}
2020
- name: Push Docker image
21-
uses: docker/build-push-action@v2
21+
uses: docker/build-push-action@v3
2222
with:
2323
file: ./Dockerfile
2424
push: true
2525
tags: |
26-
ghcr.io/swiftwasm/swiftwasm-action:5.6
26+
ghcr.io/swiftwasm/swiftwasm-action:5.7
2727
ghcr.io/swiftwasm/swiftwasm-action:latest

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/swiftwasm/carton:0.15.2
1+
FROM ghcr.io/swiftwasm/carton:0.17.0
22

33
LABEL maintainer="SwiftWasm Maintainers <[email protected]>"
44
LABEL Description="Docker Container for the SwiftWasm toolchain and SDK"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- uses: actions/checkout@v2
28-
- uses: swiftwasm/swiftwasm-action@v5.6
28+
- uses: swiftwasm/swiftwasm-action@v5.7
2929
with:
3030
shell-action: carton test
3131
```
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
- uses: actions/checkout@v2
5050
51-
- uses: swiftwasm/swiftwasm-action@v5.6
51+
- uses: swiftwasm/swiftwasm-action@v5.7
5252
with:
5353
shell-action: carton bundle
5454

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ inputs:
88
default: 'carton test'
99
runs:
1010
using: 'docker'
11-
image: 'docker://ghcr.io/swiftwasm/swiftwasm-action:5.6'
11+
image: 'docker://ghcr.io/swiftwasm/swiftwasm-action:5.7'
1212
args:
1313
- ${{ inputs.shell-action }}

0 commit comments

Comments
 (0)