diff --git a/.github/workflows/add-new-issues-and-pull-requests-to-origami-project-board.yml b/.github/workflows/add-new-issues-and-pull-requests-to-origami-project-board.yml deleted file mode 100644 index a13f612..0000000 --- a/.github/workflows/add-new-issues-and-pull-requests-to-origami-project-board.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Add new issues and pull requests to Origami Project Board -on: - - issues - - pull_request_target - -jobs: - origami_project_board_job: - runs-on: ubuntu-latest - name: Add new issue or pull request to Origami Project Board - steps: - - name: Add new issue or pull request to Origami Project Board - id: origami-project-board - uses: Financial-Times/origami-project-board-action@v1 - with: - origami-fox-access-token: ${{ secrets.ORIGAMI_FOX_ACCESS_TOKEN }} diff --git a/.github/workflows/apply-labels.yml b/.github/workflows/apply-labels.yml deleted file mode 100644 index 19583f9..0000000 --- a/.github/workflows/apply-labels.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Apply Origami labels -on: - - issues - - pull_request_target -jobs: - apply-labels: - runs-on: ubuntu-latest - name: Apply Origami labels to new issues and pull requests. - steps: - - uses: actions/checkout@v2 - - uses: Financial-Times/origami-apply-labels@v1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/automatic-tag-and-release.yml b/.github/workflows/automatic-tag-and-release.yml index 465afcb..d89d218 100644 --- a/.github/workflows/automatic-tag-and-release.yml +++ b/.github/workflows/automatic-tag-and-release.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest name: Create new version/tag steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 if: github.event.pull_request.merged # Only run on merged pull-requests with: ref: ${{ github.event.pull_request.merge_commit_sha }} # Checkout the merged commit diff --git a/.github/workflows/publish-to-npm-as-latest.yml b/.github/workflows/publish-to-npm-as-latest.yml index 01065ca..afd3978 100644 --- a/.github/workflows/publish-to-npm-as-latest.yml +++ b/.github/workflows/publish-to-npm-as-latest.yml @@ -7,10 +7,10 @@ jobs: publish-latest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.1.5 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' registry-url: 'https://registry.npmjs.org' - run: npm ci - name: Get the version diff --git a/.github/workflows/publish-to-npm-as-prerelease.yml b/.github/workflows/publish-to-npm-as-prerelease.yml index cafeca1..4dc2c57 100644 --- a/.github/workflows/publish-to-npm-as-prerelease.yml +++ b/.github/workflows/publish-to-npm-as-prerelease.yml @@ -7,10 +7,10 @@ jobs: publish-prerelease: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.1.5 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' registry-url: 'https://registry.npmjs.org' - run: npm ci - name: Get the version diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a9d0b9..18bb1d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,10 +4,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.1.5 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 20.x + node-version: 22.x - run: npm install - run: make verify - run: make test \ No newline at end of file