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
4 changes: 2 additions & 2 deletions .github/workflows/edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
matrix:
node: [ "23" ]
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- run: .ci/scripts/test.sh -b "nightly" "${{ matrix.node }}"

# This should list all the Node.js major versions listed at
Expand All @@ -55,7 +55,7 @@ jobs:
- "20"
- "18"
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- run: .ci/scripts/test.sh -b "rc" "${{ matrix.node }}"
env:
VERSION: ${{ matrix.node }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
DOCKER_IMAGE_NAME: docker.elastic.co/observability/apm-agent-nodejs
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
fetch-depth: 0

Expand All @@ -32,7 +32,7 @@ jobs:
# Setup a Docker "buildx" builder container, used by "build-push-action"
# below for multi-platform image builds. Notes on multi-platform images:
# https://github.com/elastic/apm-agent-nodejs/issues/4038#issuecomment-2130406402
- uses: docker/setup-buildx-action@v4
- uses: docker/setup-buildx-action@v4.1.0

- name: Log in to the Elastic Container registry
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tav-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
return;
}

- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
module_and_node: ${{ fromJSON(needs.command-validation.outputs.permutations) }}
steps:

- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
permutations: ${{ steps.transform.outputs.permutations }}
steps:

- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0

- id: transform
name: Load matrix from tav.json
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
# https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration
module_and_node: ${{ fromJSON(needs.prepare-matrix.outputs.permutations) }}
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- run: .ci/scripts/test.sh -b "release" -t ${{ matrix.module_and_node }}
env:
ELASTIC_APM_CONTEXT_MANAGER: ''
2 changes: 1 addition & 1 deletion .github/workflows/test-fips.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- run: |
apk update
apk add nodejs npm
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- name: Is Node.js running in FIPS mode?
run: |
node -e 'const isFips = require("node:crypto").getFips(); console.log("isFips:", isFips); assert(isFips)'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- uses: actions/setup-node@v6
with:
node-version: 18
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
- '14.17'
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
Expand All @@ -173,7 +173,7 @@ jobs:
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
- uses: actions/setup-node@v6
with:
# What Node.js version to test on Windows is a balance between which
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updatecli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: read
packages: read
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0

- name: Get token
id: get_token
Expand Down
Loading