Skip to content

Commit

Permalink
Update action
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanp413 authored Sep 19, 2024
1 parent ebf0b0d commit 2ddf57c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/new-upstream-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- name: Check for new release branch
id: new-release
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
SLACK_TITLE: New vscode release branch created
SLACK_MESSAGE: |
Start preparing for a new release :exclamation:
Trigger GHA https://github.com/gitpod-io/gitpod/actions/workflows/code-build.yaml after sync upstream
notify-recovery-release:
Expand All @@ -90,7 +90,7 @@ jobs:

- name: Check for recovery release commits
id: new-recovery-release
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -175,4 +175,3 @@ jobs:
Start preparing for a new recovery release :exclamation:
Trigger GHA https://github.com/gitpod-io/gitpod/actions/workflows/code-build.yaml after sync upstream
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
NPM_REGISTRY: 'https://registry.npmjs.org'
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
echo "quality=${QUALITY}" >> $GITHUB_OUTPUT
- name: Upload build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-${{ matrix.vscode_arch }}
path: openvscode-server-*.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/switch-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
with:
path: gitpod
repository: gitpod-io/gitpod

- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm init --yes
- run: npm install semver

- name: Run the branch switch-a-roo
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { inc, major, minor } = require('semver');
Expand Down

0 comments on commit 2ddf57c

Please sign in to comment.