Skip to content

Commit 2ddf57c

Browse files
authored
Update action
1 parent ebf0b0d commit 2ddf57c

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/new-upstream-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- name: Check for new release branch
1818
id: new-release
19-
uses: actions/github-script@v6
19+
uses: actions/github-script@v7
2020
with:
2121
result-encoding: string
2222
script: |
@@ -76,7 +76,7 @@ jobs:
7676
SLACK_TITLE: New vscode release branch created
7777
SLACK_MESSAGE: |
7878
Start preparing for a new release :exclamation:
79-
79+
8080
Trigger GHA https://github.com/gitpod-io/gitpod/actions/workflows/code-build.yaml after sync upstream
8181
8282
notify-recovery-release:
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Check for recovery release commits
9292
id: new-recovery-release
93-
uses: actions/github-script@v6
93+
uses: actions/github-script@v7
9494
with:
9595
result-encoding: string
9696
script: |
@@ -175,4 +175,3 @@ jobs:
175175
Start preparing for a new recovery release :exclamation:
176176
177177
Trigger GHA https://github.com/gitpod-io/gitpod/actions/workflows/code-build.yaml after sync upstream
178-

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
NPM_REGISTRY: 'https://registry.npmjs.org'
5555
steps:
5656
- name: Set up QEMU
57-
uses: docker/setup-qemu-action@v2
57+
uses: docker/setup-qemu-action@v3
5858

5959
- uses: actions/checkout@v4
6060
with:
@@ -260,7 +260,7 @@ jobs:
260260
echo "quality=${QUALITY}" >> $GITHUB_OUTPUT
261261
262262
- name: Upload build artifact
263-
uses: actions/upload-artifact@v3
263+
uses: actions/upload-artifact@v4
264264
with:
265265
name: linux-${{ matrix.vscode_arch }}
266266
path: openvscode-server-*.tar.gz

.github/workflows/switch-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
with:
3333
path: gitpod
3434
repository: gitpod-io/gitpod
35-
35+
3636
- uses: actions/setup-node@v3
3737
with:
3838
node-version: 20
3939
- run: npm init --yes
4040
- run: npm install semver
4141

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

0 commit comments

Comments
 (0)