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
2 changes: 1 addition & 1 deletion .github/workflows/check-toolchain-token.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
jobs:
check-toolchain-token:
name: Check Toolchain Token
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9"]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-upstream-scripts.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Check for changes in upstream scripts
on:
on:
workflow_dispatch: # Allow running on-demand
jobs:
check-scripts:
name: Check for upstream changes to script
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9"]
Expand All @@ -25,5 +25,5 @@ jobs:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_COLOR: yellow
SLACK_TITLE: Out of date script
SLACK_MESSAGE: "A local in repo script is out of date compared to an upstream script., See log for details: https://github.com/toolchainlabs/toolchain/actions/workflows/check-upstream-scripts.yml"
SLACK_MESSAGE: "A local in repo script is out of date compared to an upstream script., See log for details: https://github.com/toolchainlabs/toolchain-oss/actions/workflows/check-upstream-scripts.yml"
SLACK_CHANNEL: "devops"
12 changes: 6 additions & 6 deletions .github/workflows/node-js-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Node JS CI
on:
on:
push:
branches:
- master
Expand All @@ -9,9 +9,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
check_for_changes:
check_for_changes:
name: Check JS Changes
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
js_changes: ${{ steps.changed-files.outputs.any_modified }}
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
.github/**
nodes_js_ci:
name: Node/JS CI
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: check_for_changes
timeout-minutes: 20
steps:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
run: yarn build
cypress-run:
name: Cypress tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: check_for_changes
if: needs.check_for_changes.outputs.js_changes == 'true'
steps:
Expand All @@ -117,7 +117,7 @@ jobs:
with:
cache: 'yarn'
cache-dependency-path: src/node/yarn.lock
node-version-file: 'src/node/toolchain/pants-demo-site/.nvmrc'
node-version-file: 'src/node/toolchain/pants-demo-site/.nvmrc'
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Audit reqs
on:
on:
workflow_dispatch: # Allow running on-demand
jobs:
audit-python:
name: Audit python packages
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9"]
os: [ubuntu-latest]
os: [ubuntu-24.04]
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -40,5 +40,5 @@ jobs:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_COLOR: red
SLACK_TITLE: Python Packages Security Audit FAILED.
SLACK_MESSAGE: "There is a security vulnerability in one of the python packages used by Toolchain, See log for details: https://github.com/toolchainlabs/toolchain/actions/workflows/pacakges-audit.yml"
SLACK_MESSAGE: "There is a security vulnerability in one of the python packages used by Toolchain, See log for details: https://github.com/toolchainlabs/toolchain-oss/actions/workflows/packages-audit.yml"
SLACK_CHANNEL: "devops"
6 changes: 3 additions & 3 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Rust CI
on:
on:
push:
branches:
- master
Expand All @@ -9,7 +9,7 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
check_for_changes:
check_for_changes:
name: Check Rust Changes
runs-on: ubuntu-latest
outputs:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- uses: actions-rs/toolchain@v1.0.7
if: needs.check_for_changes.outputs.rust_changes == 'true'
with:
toolchain: 1.68.0
toolchain: 1.93.0
- name: Install Protoc
uses: arduino/setup-protoc@64c0c85d18e984422218383b81c52f8b077404d3
if: needs.check_for_changes.outputs.rust_changes == 'true'
Expand Down
Loading
Loading