Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build-docker-ajanta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Extract version
id: image-version
Expand All @@ -23,10 +23,10 @@ jobs:
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Build Docker image for testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
load: true
Expand All @@ -36,7 +36,7 @@ jobs:
cache-to: type=gha,mode=max

- name: Checkout code examples
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: jammin-create/jammin-create-ajanta
path: ajanta-example
Comment thread
tomusdrw marked this conversation as resolved.
Expand All @@ -55,23 +55,23 @@ jobs:
docker save ajanta:${{ steps.image-version.outputs.version }} | gzip > ajanta-image.tar.gz

- name: Upload Docker image artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ajanta-docker-image
path: ajanta-image.tar.gz
retention-days: 1

- name: Log in to GitHub Container Registry
if: github.event_name == 'push'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
if: github.event_name == 'push'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build-docker-jade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Extract version
id: image-version
Expand All @@ -23,10 +23,10 @@ jobs:
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Build Docker image for testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
load: true
Expand All @@ -36,7 +36,7 @@ jobs:
cache-to: type=gha,mode=max

- name: Checkout code examples
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: tomusdrw/jam-examples
path: jam-examples
Expand All @@ -50,23 +50,23 @@ jobs:
docker save jade:${{ steps.image-version.outputs.version }} | gzip > jade-image.tar.gz

- name: Upload Docker image artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: jade-docker-image
path: jade-image.tar.gz
retention-days: 1

- name: Log in to GitHub Container Registry
if: github.event_name == 'push'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
if: github.event_name == 'push'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build-docker-jam-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Extract version
id: image-version
Expand All @@ -23,10 +23,10 @@ jobs:
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Build Docker image for testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
load: true
Expand All @@ -36,7 +36,7 @@ jobs:
cache-to: type=gha,mode=max

- name: Checkout code examples
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: jammin-create/jammin-create-jam-sdk
path: jam-sdk-example
Expand All @@ -50,23 +50,23 @@ jobs:
docker save jam-sdk:${{ steps.image-version.outputs.version }} | gzip > jam-sdk-image.tar.gz

- name: Upload Docker image artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: jam-sdk-docker-image
path: jam-sdk-image.tar.gz
retention-days: 1

- name: Log in to GitHub Container Registry
if: github.event_name == 'push'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
if: github.event_name == 'push'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-docker-polkajam.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
tomusdrw marked this conversation as resolved.

- name: Extract version
id: image-version
Expand All @@ -23,10 +23,10 @@ jobs:
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Build Docker image for testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
load: true
Expand All @@ -45,23 +45,23 @@ jobs:
docker save polkajam:${{ steps.image-version.outputs.version }} | gzip > polkajam-image.tar.gz

- name: Upload Docker image artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: polkajam-docker-image
path: polkajam-image.tar.gz
retention-days: 1

- name: Log in to GitHub Container Registry
if: github.event_name == 'push'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
if: github.event_name == 'push'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install mdBook
uses: peaceiris/actions-mdbook@v1
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: latest
- name: Build book
run: mdbook build docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: docs/book

Expand All @@ -44,4 +44,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
6 changes: 3 additions & 3 deletions .github/workflows/publish-npm-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ env.BUN_VERSION }}

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-npm-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ env.BUN_VERSION }}

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: oven-sh/setup-bun@v1
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.3

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: main
fetch-depth: 0

- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ env.BUN_VERSION }}

Expand Down
Loading